summaryrefslogtreecommitdiff
path: root/tests/units
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units')
-rw-r--r--tests/units/Helper/TextHelperTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/Helper/TextHelperTest.php b/tests/units/Helper/TextHelperTest.php
index 95feab73..8f596541 100644
--- a/tests/units/Helper/TextHelperTest.php
+++ b/tests/units/Helper/TextHelperTest.php
@@ -22,7 +22,7 @@ class TextHelperTest extends Base
$this->assertEquals('<p>Test</p>', $helper->markdown('Test'));
$this->assertEquals(
- '<p>Task <a href="?controller=task&amp;action=show&amp;task_id=123">#123</a></p>',
+ '<p>Task <a href="?controller=TaskViewController&amp;action=show&amp;task_id=123">#123</a></p>',
$helper->markdown('Task #123')
);
@@ -32,7 +32,7 @@ class TextHelperTest extends Base
);
$this->assertEquals(
- '<p>Task <a href="?controller=task&amp;action=readonly&amp;token='.$project['token'].'&amp;task_id=1">#1</a></p>',
+ '<p>Task <a href="?controller=TaskViewController&amp;action=readonly&amp;token='.$project['token'].'&amp;task_id=1">#1</a></p>',
$helper->markdown('Task #1', true)
);