diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-01-10 15:03:42 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-01-10 15:03:42 -0500 |
commit | b1e484fad6c6d77ea23c391212bd705805f2284e (patch) | |
tree | a4bee4516c8c66bf8e6b5ea1df582816f11edcda /tests/units | |
parent | b470b6726074b3f6b773bf1a28569c39a4cb7db1 (diff) |
Change events for project modification subscriber
Diffstat (limited to 'tests/units')
-rw-r--r-- | tests/units/ProjectTest.php | 2 |
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() |