diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-01 14:19:49 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-01 14:19:49 -0500 |
commit | 40ca850707b2f7f51d2d9028bcfd218cd966b32f (patch) | |
tree | 208af425a604261fce0d6173a57b656ab2c34f3d /tests/units/TaskStatusTest.php | |
parent | b42830e77d85b684fa8c93dd78d19d80c3b3b7fe (diff) |
Add column description (merge/change pull-request #549)
Diffstat (limited to 'tests/units/TaskStatusTest.php')
-rw-r--r-- | tests/units/TaskStatusTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/TaskStatusTest.php b/tests/units/TaskStatusTest.php index b1c3f695..410e4c36 100644 --- a/tests/units/TaskStatusTest.php +++ b/tests/units/TaskStatusTest.php @@ -54,7 +54,7 @@ class TaskStatusTest extends Base $this->assertNotEmpty($task); $this->assertEquals(Task::STATUS_OPEN, $task['is_active']); $this->assertEquals(0, $task['date_completed']); - $this->assertEquals(time(), $task['date_modification']); + $this->assertEquals(time(), $task['date_modification'], 1); $called = $this->container['dispatcher']->getCalledListeners(); $this->assertArrayHasKey('task.close.TaskStatusTest::onTaskClose', $called); |