diff --git a/tests/unit/Grav/Common/Markdown/ParsedownTest.php b/tests/unit/Grav/Common/Markdown/ParsedownTest.php index 3563f54a0..451190965 100644 --- a/tests/unit/Grav/Common/Markdown/ParsedownTest.php +++ b/tests/unit/Grav/Common/Markdown/ParsedownTest.php @@ -446,7 +446,7 @@ class ParsedownTest extends \Codeception\TestCase\Test $this->parsedown->text('[google.com](https://www.google.com)') ); $this->assertSame( - '
', + '', $this->parsedown->text('[complex url](https://github.com/getgrav/grav/issues/new?title=[add-resource]%20New%20Plugin/Theme&body=Hello%20**There**)') ); } @@ -1056,7 +1056,7 @@ class ParsedownTest extends \Codeception\TestCase\Test $this->parsedown->text('[Relative Rel](../item2-3?rel=nofollow)') ); $this->assertSame( - '', + '', $this->parsedown->text('[Relative Mixed](../item2-3?foo=bar&baz=qux&rel=nofollow&class=button)') ); }