summaryrefslogtreecommitdiff
path: root/tests/units/ActionTaskAssignCurrentUserTest.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-10-12 15:32:35 -0400
committerFrédéric Guillot <fred@kanboard.net>2014-10-12 15:32:35 -0400
commit4061927d215c846ff8eb196301bf61532018042b (patch)
tree0e14a0e458ee8739754f75f8c158cc42a9b593a4 /tests/units/ActionTaskAssignCurrentUserTest.php
parentb7060b33ef317eeac576c504b1fb840d4471e411 (diff)
Move some Task model methods to the TaskFinder class
Diffstat (limited to 'tests/units/ActionTaskAssignCurrentUserTest.php')
-rw-r--r--tests/units/ActionTaskAssignCurrentUserTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/units/ActionTaskAssignCurrentUserTest.php b/tests/units/ActionTaskAssignCurrentUserTest.php
index cfed7be5..edc2577c 100644
--- a/tests/units/ActionTaskAssignCurrentUserTest.php
+++ b/tests/units/ActionTaskAssignCurrentUserTest.php
@@ -3,6 +3,7 @@
require_once __DIR__.'/Base.php';
use Model\Task;
+use Model\TaskFinder;
use Model\Project;
use Model\Acl;
@@ -47,6 +48,7 @@ class ActionTaskAssignCurrentUser extends Base
// We create a task in the first column
$t = new Task($this->registry);
+ $tf = new TaskFinder($this->registry);
$p = new Project($this->registry);
$a = new Acl($this->registry);
@@ -65,7 +67,7 @@ class ActionTaskAssignCurrentUser extends Base
$this->assertTrue($action->execute($event));
// Our task should be assigned to the user 5 (from the session)
- $task = $t->getById(1);
+ $task = $tf->getById(1);
$this->assertNotEmpty($task);
$this->assertEquals(1, $task['id']);
$this->assertEquals(5, $task['owner_id']);