From 961707af04b406e4d2ba52ea9657a0905ffc8d71 Mon Sep 17 00:00:00 2001 From: noackorama <noackorama@gmail.com> Date: Wed, 13 Oct 2021 13:28:24 +0200 Subject: [PATCH] fix Tests close #250 --- tests/unit/lib/VisualTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/lib/VisualTest.php b/tests/unit/lib/VisualTest.php index f3157b1d1ea..ae0b94196c6 100644 --- a/tests/unit/lib/VisualTest.php +++ b/tests/unit/lib/VisualTest.php @@ -225,7 +225,7 @@ class VisualFunctionsTest extends \Codeception\Test\Unit public function testMail() { $input = '[Mail]some.user+tag@example.com'; - $expected = '<a class="link-extern" href="mailto:some.user+tag@example.com">Mail</a>'; + $expected = '<a href="mailto:some.user+tag@example.com">Mail</a>'; $expected = $this->wrap($expected); $this->assertEquals($expected, formatReady($input)); } -- GitLab