Changeset 51335 for trunk/tests/phpunit/tests/term/getTheTerms.php
- Timestamp:
- 07/06/2021 12:25:53 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term/getTheTerms.php
r51331 r51335 249 249 wp_defer_term_counting( false ); 250 250 251 $this->assert True( is_array( $terms ));251 $this->assertIsArray( $terms ); 252 252 $this->assertSame( array( $term_id ), wp_list_pluck( $terms, 'term_id' ) ); 253 253 } … … 284 284 wp_defer_term_counting( false ); 285 285 286 $this->assert True( is_array( $terms ));286 $this->assertIsArray( $terms ); 287 287 $this->assertSame( array( $term_ids[1] ), wp_list_pluck( $terms, 'term_id' ) ); 288 288 }
Note: See TracChangeset
for help on using the changeset viewer.