diff options
Diffstat (limited to 'tests/units/TaskCreationTest.php')
-rw-r--r-- | tests/units/TaskCreationTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/TaskCreationTest.php b/tests/units/TaskCreationTest.php index bdb0a79d..986f1eb1 100644 --- a/tests/units/TaskCreationTest.php +++ b/tests/units/TaskCreationTest.php @@ -93,8 +93,8 @@ class TaskCreationTest extends Base $this->assertEquals('', $task['description']); $this->assertEquals('', $task['reference']); - $this->assertEquals(time(), $task['date_creation']); - $this->assertEquals(time(), $task['date_modification']); + $this->assertEquals(time(), $task['date_creation'], 'Wrong timestamp', 1); + $this->assertEquals(time(), $task['date_modification'], 'Wrog timestamp', 1); $this->assertEquals(0, $task['date_due']); $this->assertEquals(0, $task['date_completed']); $this->assertEquals(0, $task['date_started']); |