From 00ee9a62d1cb2599c04b0528026a66d12c129557 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 4 Nov 2015 16:35:02 +0000 Subject: [PATCH] Add missing `@group` to `Tests_Rel_No_Follow`. See #9959. git-svn-id: https://develop.svn.wordpress.org/trunk@35505 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/formatting/WPRelNoFollow.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/phpunit/tests/formatting/WPRelNoFollow.php b/tests/phpunit/tests/formatting/WPRelNoFollow.php index 8d6a514e8e..821bb936a1 100644 --- a/tests/phpunit/tests/formatting/WPRelNoFollow.php +++ b/tests/phpunit/tests/formatting/WPRelNoFollow.php @@ -1,15 +1,22 @@ This is some cool Code

'; $expected = '

This is some cool Code

'; $this->assertEquals( $expected, wp_rel_nofollow( $content ) ); } + /** + * @ticket 9959 + */ public function test_convert_no_follow() { $content = '

This is some cool Code

'; $expected = '

This is some cool Code

';