Changeset 54891 for trunk/tests/phpunit/tests/dependencies/scripts.php
- Timestamp:
- 11/29/2022 03:49:49 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/dependencies/scripts.php
r54349 r54891 277 277 */ 278 278 public function test_group_mismatch_in_deps() { 279 $scripts = new WP_Scripts ;279 $scripts = new WP_Scripts(); 280 280 $scripts->add( 'one', 'one', array(), 'v1', 1 ); 281 281 $scripts->add( 'two', 'two', array( 'one' ) ); … … 296 296 $this->assertContains( 'three', $scripts->done ); 297 297 298 $scripts = new WP_Scripts ;298 $scripts = new WP_Scripts(); 299 299 $scripts->add( 'one', 'one', array(), 'v1', 1 ); 300 300 $scripts->add( 'two', 'two', array( 'one' ), 'v1', 1 );
Note: See TracChangeset
for help on using the changeset viewer.