aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authornoackorama <noackorama@gmail.com>2021-10-13 13:28:24 +0200
committernoackorama <noackorama@gmail.com>2021-10-13 13:28:24 +0200
commit961707af04b406e4d2ba52ea9657a0905ffc8d71 (patch)
tree2831a25172f7040ffdd4b8c84f93b4ed22aada15 /tests
parent37e46aab7571ef0ff407b73ad155845660ac088c (diff)
fix Tests close #250
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/lib/VisualTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/lib/VisualTest.php b/tests/unit/lib/VisualTest.php
index f3157b1..ae0b941 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));
}