Fix incorrect variable names from [35164].

Cool story - the tests appeared to pass with the typos.

See #30017, #33968.

git-svn-id: https://develop.svn.wordpress.org/trunk@35165 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Boone Gorges 2015-10-14 21:59:14 +00:00
parent 8c7dc25bed
commit 734d3794ac

View File

@ -30,7 +30,7 @@ class Tests_Admin_includesListTable extends WP_UnitTestCase {
) ); ) );
self::$top[ $i ] = $p; self::$top[ $i ] = $p;
self::$post_ids[] = $p; self::$post_ids[] = $p->ID;
} }
// create child pages // create child pages
@ -44,7 +44,7 @@ class Tests_Admin_includesListTable extends WP_UnitTestCase {
) ); ) );
self::$children[ $top ][ $i ] = $p; self::$children[ $top ][ $i ] = $p;
self::$post_ids[] = $p; self::$post_ids[] = $p->ID;
} }
} }
@ -60,7 +60,7 @@ class Tests_Admin_includesListTable extends WP_UnitTestCase {
) ); ) );
self::$grandchildren[ $top ][ $child ][ $i ] = $p; self::$grandchildren[ $top ][ $child ][ $i ] = $p;
self::$post_ids = $p; self::$post_ids[] = $p->ID;
} }
} }
} }