summaryrefslogtreecommitdiff
path: root/tests/units/ProjectActivityTest.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-04-18 14:28:55 -0400
committerFrederic Guillot <fred@kanboard.net>2015-04-18 14:28:55 -0400
commit7b7ea56460f755e77194b969c40a38c557ed08f6 (patch)
treefc309f628da34bf9ed817c01b24a1f2949506de5 /tests/units/ProjectActivityTest.php
parent94865a7c0343f352e862f7aea232545827922942 (diff)
Fix issue move column up/down with non consecutive positions
Diffstat (limited to 'tests/units/ProjectActivityTest.php')
-rw-r--r--tests/units/ProjectActivityTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/ProjectActivityTest.php b/tests/units/ProjectActivityTest.php
index e70dfb0e..f0b27649 100644
--- a/tests/units/ProjectActivityTest.php
+++ b/tests/units/ProjectActivityTest.php
@@ -41,7 +41,7 @@ class ProjectActivityTest extends Base
$this->assertNotEmpty($events);
$this->assertTrue(is_array($events));
$this->assertEquals(2, count($events));
- $this->assertEquals(time(), $events[0]['date_creation']);
+ $this->assertEquals(time(), $events[0]['date_creation'], '', 1);
$this->assertEquals(Task::EVENT_UPDATE, $events[0]['event_name']);
$this->assertEquals(Task::EVENT_CLOSE, $events[1]['event_name']);
}