From de9d091e760650248f93df62a888f1b684858ea2 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Wed, 17 Feb 2016 15:36:20 +0000 Subject: [PATCH] Tests: Indent `test_wp_register_style()` with tabs. git-svn-id: https://develop.svn.wordpress.org/trunk@36547 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/dependencies/styles.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/phpunit/tests/dependencies/styles.php b/tests/phpunit/tests/dependencies/styles.php index ebc23fd641..2b5af5bb9f 100644 --- a/tests/phpunit/tests/dependencies/styles.php +++ b/tests/phpunit/tests/dependencies/styles.php @@ -229,14 +229,14 @@ CSS; $this->assertEquals( $expected, get_echo( 'wp_print_styles' ) ); } - /** - * Testing 'wp_register_style' return boolean success/failure value. - * - * @ticket 31126 - */ - function test_wp_register_style(){ - $this->assertTrue( wp_register_style( 'duplicate-handler', 'http://example.com' ) ); - $this->assertFalse( wp_register_style( 'duplicate-handler', 'http://example.com' ) ); - } + /** + * Testing 'wp_register_style' return boolean success/failure value. + * + * @ticket 31126 + */ + function test_wp_register_style(){ + $this->assertTrue( wp_register_style( 'duplicate-handler', 'http://example.com' ) ); + $this->assertFalse( wp_register_style( 'duplicate-handler', 'http://example.com' ) ); + } }