From 67dd5f256d96db382b634e6cde33e970af7cfde9 Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Thu, 30 Jan 2020 09:15:26 +0200 Subject: [PATCH] Fixed unit test for parsedown link & --- tests/unit/Grav/Common/Markdown/ParsedownTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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( - '

complex url

', + '

complex url

', $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( - '

Relative Mixed

', + '

Relative Mixed

', $this->parsedown->text('[Relative Mixed](../item2-3?foo=bar&baz=qux&rel=nofollow&class=button)') ); }