Changeset 48937 for trunk/tests/phpunit/tests/dependencies/jquery.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/dependencies/jquery.php
r48325 r48937 32 32 $this->assertInstanceOf( '_WP_Dependency', $object ); 33 33 $this->assertTrue( isset( $jquery_scripts[ $dep ] ) ); 34 $this->assert Equals( $jquery_scripts[ $dep ], $o->src );34 $this->assertSame( $jquery_scripts[ $dep ], $o->src ); 35 35 } 36 36 */ … … 41 41 $noconflict = 'jQuery.noConflict();'; 42 42 $end = substr( $contents, - strlen( $noconflict ) ); 43 $this->assert Equals( $noconflict, $end );43 $this->assertSame( $noconflict, $end ); 44 44 } 45 45
Note: See TracChangeset
for help on using the changeset viewer.