diff options
Diffstat (limited to 'tests/units')
-rw-r--r-- | tests/units/Helper/TextHelperTest.php | 4 |
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&action=show&task_id=123">#123</a></p>', + '<p>Task <a href="?controller=TaskViewController&action=show&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&action=readonly&token='.$project['token'].'&task_id=1">#1</a></p>', + '<p>Task <a href="?controller=TaskViewController&action=readonly&token='.$project['token'].'&task_id=1">#1</a></p>', $helper->markdown('Task #1', true) ); |