diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-01-07 21:36:51 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-01-07 21:36:51 -0500 |
commit | f32d23d01528f86ff25728e9a99058e273d5b154 (patch) | |
tree | 9239d78786b09d8ae449a20c235124f7e527bbb3 /tests | |
parent | 7864685cfdb64d2ef6497a445f0d8ed96762e4bf (diff) |
Remove HTMLToMarkdown dependency
Diffstat (limited to 'tests')
-rw-r--r-- | tests/units/Core/Action/ActionManagerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/Core/Action/ActionManagerTest.php b/tests/units/Core/Action/ActionManagerTest.php index 3714583b..492b9e03 100644 --- a/tests/units/Core/Action/ActionManagerTest.php +++ b/tests/units/Core/Action/ActionManagerTest.php @@ -34,8 +34,8 @@ class ActionManagerTest extends Base public function testGetAvailableActions() { $actionManager = new ActionManager($this->container); - $actionTaskClose1 = new TaskClose($this->container); - $actionTaskClose2 = new TaskClose($this->container); + $actionTaskClose1 = new TaskCloseColumn($this->container); + $actionTaskClose2 = new TaskCloseColumn($this->container); $actionTaskUpdateStartDate = new TaskUpdateStartDate($this->container); $actionManager |