diff --git a/tests/phpunit/tests/dependencies/scripts.php b/tests/phpunit/tests/dependencies/scripts.php index 73680df6c3..950e53e2fd 100644 --- a/tests/phpunit/tests/dependencies/scripts.php +++ b/tests/phpunit/tests/dependencies/scripts.php @@ -156,14 +156,14 @@ class Tests_Dependencies_Scripts extends WP_UnitTestCase { $this->assertEquals( '', get_echo( 'wp_print_scripts' ) ); } - /** - * Testing 'wp_register_script' return boolean success/failure value. - * - * @ticket 31126 - */ - function test_wp_register_script() { - $this->assertTrue( wp_register_script( 'duplicate-handler', 'http://example.com' ) ); - $this->assertFalse( wp_register_script( 'duplicate-handler', 'http://example.com' ) ); - } + /** + * Testing 'wp_register_script' return boolean success/failure value. + * + * @ticket 31126 + */ + function test_wp_register_script() { + $this->assertTrue( wp_register_script( 'duplicate-handler', 'http://example.com' ) ); + $this->assertFalse( wp_register_script( 'duplicate-handler', 'http://example.com' ) ); + } }