Changeset 54402 for trunk/tests/phpunit/tests/term/taxQuery.php
- Timestamp:
- 10/07/2022 01:02:07 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term/taxQuery.php
r51568 r54402 60 60 ); 61 61 62 $this->assert Equals( $expected, $tq->queries[0] );62 $this->assertSameSetsWithIndex( $expected, $tq->queries[0] ); 63 63 } 64 64 … … 83 83 ); 84 84 85 $this->assert Equals( $expected, $tq->queries[0] );85 $this->assertSameSetsWithIndex( $expected, $tq->queries[0] ); 86 86 } 87 87 … … 263 263 $tq->transform_query( $tq->queries[0], 'term_taxonomy_id' ); 264 264 265 $this->assertEqual s( $tt_ids, $tq->queries[0]['terms'] );265 $this->assertEqualSets( $tt_ids, $tq->queries[0]['terms'] ); 266 266 $this->assertSame( 'term_taxonomy_id', $tq->queries[0]['field'] ); 267 267 }
Note: See TracChangeset
for help on using the changeset viewer.