From bd299597d5938bd445fa45da3a58183a0f6e172a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 4 Sep 2019 18:40:13 +0000 Subject: [PATCH] Coding Standards: Fix WPCS issue in [45990]. git-svn-id: https://develop.svn.wordpress.org/trunk@46019 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/formatting/WPRelNoFollow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/formatting/WPRelNoFollow.php b/tests/phpunit/tests/formatting/WPRelNoFollow.php index 04c68100d7..187bb5997b 100644 --- a/tests/phpunit/tests/formatting/WPRelNoFollow.php +++ b/tests/phpunit/tests/formatting/WPRelNoFollow.php @@ -76,7 +76,7 @@ class Tests_Rel_No_Follow extends WP_UnitTestCase { } public function test_append_no_follow_with_valueless_attribute() { - $content = '

This is some cool Code

'; + $content = '

This is some cool Code

'; $expected = '

This is some cool Code

'; $this->assertEquals( $expected, wp_rel_nofollow( $content ) ); }