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:
parent
8c7dc25bed
commit
734d3794ac
@ -30,7 +30,7 @@ class Tests_Admin_includesListTable extends WP_UnitTestCase {
|
||||
) );
|
||||
|
||||
self::$top[ $i ] = $p;
|
||||
self::$post_ids[] = $p;
|
||||
self::$post_ids[] = $p->ID;
|
||||
}
|
||||
|
||||
// create child pages
|
||||
@ -44,7 +44,7 @@ class Tests_Admin_includesListTable extends WP_UnitTestCase {
|
||||
) );
|
||||
|
||||
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::$post_ids = $p;
|
||||
self::$post_ids[] = $p->ID;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user