diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-16 21:11:43 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-16 21:11:43 -0400 |
commit | d8472d17bd1cd0aa996b6f19288e5e799a78ad65 (patch) | |
tree | f9354f2ae223590998be0d35a52638208498f88f /tests/units/Helper/TextHelperTest.php | |
parent | b1e2ca00ce7375ffcbe5e927135c8892036e6bd6 (diff) |
Update test case
Diffstat (limited to 'tests/units/Helper/TextHelperTest.php')
-rw-r--r-- | tests/units/Helper/TextHelperTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/Helper/TextHelperTest.php b/tests/units/Helper/TextHelperTest.php index 2787abf2..95feab73 100644 --- a/tests/units/Helper/TextHelperTest.php +++ b/tests/units/Helper/TextHelperTest.php @@ -47,7 +47,7 @@ class TextHelperTest extends Base public function testMarkdownUserLink() { $h = new TextHelper($this->container); - $this->assertEquals('<p>Text <a href="?controller=user&action=profile&user_id=1" class="user-mention-link">@admin</a> @notfound</p>', $h->markdown('Text @admin @notfound')); + $this->assertEquals('<p>Text <a href="?controller=UserViewController&action=profile&user_id=1" class="user-mention-link">@admin</a> @notfound</p>', $h->markdown('Text @admin @notfound')); $this->assertEquals('<p>Text @admin @notfound</p>', $h->markdown('Text @admin @notfound', true)); } |