Changeset 34623
- Timestamp:
- 09/27/2015 02:00:49 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/comment.php
r34599 r34623 335 335 336 336 // Direct descendants of $c1. 337 $this->assertEqual s( array( $c2, $c4 ), array_values( wp_list_pluck( $children, 'comment_ID' ) ) );337 $this->assertEqualSets( array( $c2, $c4 ), array_values( wp_list_pluck( $children, 'comment_ID' ) ) ); 338 338 339 339 // Direct descendants of $c2. 340 $this->assertEqual s( array( $c3 ), array_values( wp_list_pluck( $children[ $c2 ]->get_children(), 'comment_ID' ) ) );340 $this->assertEqualSets( array( $c3 ), array_values( wp_list_pluck( $children[ $c2 ]->get_children(), 'comment_ID' ) ) ); 341 341 } 342 342
Note: See TracChangeset
for help on using the changeset viewer.