From 7f697a92a25759bc2cf24abcab0a482e26f5dc1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9?= <583546+oandregal@users.noreply.github.com> Date: Mon, 13 Sep 2021 09:35:15 +0200 Subject: [PATCH] Update link element tests --- phpunit/class-elements-test.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpunit/class-elements-test.php b/phpunit/class-elements-test.php index c5ecc36fd4e0d..585cbb845d211 100644 --- a/phpunit/class-elements-test.php +++ b/phpunit/class-elements-test.php @@ -41,7 +41,7 @@ public function test_simple_paragraph_link_color() { ); $this->assertSame( $result, - '
Hello WordPress!
' . "\n" + '' . "\n" . 'Hello WordPress!
' ); } @@ -71,7 +71,7 @@ public function test_class_paragraph_link_color() { ); $this->assertSame( $result, - 'Hello WordPress!
' . "\n" + '' . "\n" . 'Hello WordPress!
' ); } @@ -100,7 +100,7 @@ public function test_anchor_paragraph_link_color() { ); $this->assertSame( $result, - 'Hello WordPress!
' . "\n" + '' . "\n" . 'Hello WordPress!
' ); } }