summaryrefslogtreecommitdiff
path: root/tests/units/ActionTaskUpdateStartDateTest.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-06-13 22:03:12 -0400
committerFrederic Guillot <fred@kanboard.net>2015-06-13 22:03:12 -0400
commitd577c73e46de23742bc069d0a444f0bedeca5abc (patch)
tree0cb485ab0f2b2140f4029538050f30658798a066 /tests/units/ActionTaskUpdateStartDateTest.php
parent0dc247dca1336b5bdd2f6fec292d47b8ef65ca19 (diff)
Add new automatic action: Move task to another column when the category is changed
Diffstat (limited to 'tests/units/ActionTaskUpdateStartDateTest.php')
-rw-r--r--tests/units/ActionTaskUpdateStartDateTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/ActionTaskUpdateStartDateTest.php b/tests/units/ActionTaskUpdateStartDateTest.php
index da36551d..4bf87452 100644
--- a/tests/units/ActionTaskUpdateStartDateTest.php
+++ b/tests/units/ActionTaskUpdateStartDateTest.php
@@ -38,7 +38,7 @@ class ActionTaskUpdateStartDateTest extends Base
// Our event should be executed
$this->assertTrue($action->execute(new GenericEvent($event)));
- // Our task should be closed
+ // Our task should be updated
$task = $tf->getById(1);
$this->assertNotEmpty($task);
$this->assertEquals(time(), $task['date_started'], '', 2);