diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-04-18 14:28:55 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-04-18 14:28:55 -0400 |
commit | 7b7ea56460f755e77194b969c40a38c557ed08f6 (patch) | |
tree | fc309f628da34bf9ed817c01b24a1f2949506de5 /tests/units/ProjectActivityTest.php | |
parent | 94865a7c0343f352e862f7aea232545827922942 (diff) |
Fix issue move column up/down with non consecutive positions
Diffstat (limited to 'tests/units/ProjectActivityTest.php')
-rw-r--r-- | tests/units/ProjectActivityTest.php | 2 |
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']); } |