summaryrefslogtreecommitdiff
path: root/tests/units
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-01-10 15:03:42 -0500
committerFrederic Guillot <fred@kanboard.net>2015-01-10 15:03:42 -0500
commitb1e484fad6c6d77ea23c391212bd705805f2284e (patch)
treea4bee4516c8c66bf8e6b5ea1df582816f11edcda /tests/units
parentb470b6726074b3f6b773bf1a28569c39a4cb7db1 (diff)
Change events for project modification subscriber
Diffstat (limited to 'tests/units')
-rw-r--r--tests/units/ProjectTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/ProjectTest.php b/tests/units/ProjectTest.php
index 38b742b3..4553dd3a 100644
--- a/tests/units/ProjectTest.php
+++ b/tests/units/ProjectTest.php
@@ -104,7 +104,7 @@ class ProjectTest extends Base
$project = $p->getById(1);
$this->assertNotEmpty($project);
- $this->assertEquals($now + 1, $project['last_modified']);
+ $this->assertGreaterThan($now, $project['last_modified']);
}
public function testIsLastModified()