##// END OF EJS Templates
Backport PR #8165: use >= instead of > when comparing dates...
Min RK -
Show More
@@ -271,7 +271,7 b' class TestContentsManager(TestCase):'
271 271
272 272 # Reload notebook and verify that last_modified incremented.
273 273 saved = cm.get(path)
274 self.assertGreater(saved['last_modified'], model['last_modified'])
274 self.assertGreaterEqual(saved['last_modified'], model['last_modified'])
275 275
276 276 # Move the notebook and verify that last_modified stayed the same.
277 277 # (The frontend fires a warning if last_modified increases on the
General Comments 0
You need to be logged in to leave comments. Login now