- Timestamp:
- 07/05/2021 05:21:53 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/taxonomy/getObjectTaxonomies.php
r46586 r51331 37 37 38 38 $this->assertSame( array( 'wptests_tax' ), array_keys( $found ) ); 39 $this->assertI nternalType( 'object',$found['wptests_tax'] );39 $this->assertIsObject( $found['wptests_tax'] ); 40 40 $this->assertSame( 'wptests_tax', $found['wptests_tax']->name ); 41 41 } … … 88 88 89 89 $this->assertSame( array( 'wptests_tax2' ), array_keys( $found ) ); 90 $this->assertI nternalType( 'object',$found['wptests_tax2'] );90 $this->assertIsObject( $found['wptests_tax2'] ); 91 91 $this->assertSame( 'wptests_tax2', $found['wptests_tax2']->name ); 92 92 }
Note: See TracChangeset
for help on using the changeset viewer.