summaryrefslogtreecommitdiff
path: root/tests/units/Action/TaskAssignCategoryLabelTest.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-04 22:52:08 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-04 22:52:08 -0400
commitd5c95e8240639975f61f726e9722900a8d54611f (patch)
tree3bf55bda241616303e859b0aa8f829133f290a15 /tests/units/Action/TaskAssignCategoryLabelTest.php
parent1e1c127a8548b65751eb332bf8edf5842d14d468 (diff)
Added automated action to change task color based on the priority
Diffstat (limited to 'tests/units/Action/TaskAssignCategoryLabelTest.php')
-rw-r--r--tests/units/Action/TaskAssignCategoryLabelTest.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/units/Action/TaskAssignCategoryLabelTest.php b/tests/units/Action/TaskAssignCategoryLabelTest.php
index bf8bdb5b..ba988a72 100644
--- a/tests/units/Action/TaskAssignCategoryLabelTest.php
+++ b/tests/units/Action/TaskAssignCategoryLabelTest.php
@@ -42,7 +42,6 @@ class TaskAssignCategoryLabelTest extends Base
$categoryModel = new Category($this->container);
$projectModel = new Project($this->container);
$taskCreationModel = new TaskCreation($this->container);
- $taskFinderModel = new TaskFinder($this->container);
$this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
$this->assertEquals(1, $taskCreationModel->create(array('project_id' => 1, 'title' => 'test')));
@@ -64,7 +63,6 @@ class TaskAssignCategoryLabelTest extends Base
$categoryModel = new Category($this->container);
$projectModel = new Project($this->container);
$taskCreationModel = new TaskCreation($this->container);
- $taskFinderModel = new TaskFinder($this->container);
$this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
$this->assertEquals(1, $categoryModel->create(array('name' => 'c1', 'project_id' => 1)));