From dbc4d4786b793d980855ed954691af9cacb83a83 Mon Sep 17 00:00:00 2001 From: Andrea Crotti Date: Thu, 22 Mar 2012 16:30:26 +0000 Subject: [PATCH] on my machine leaving the places to 2 or 1 makes this test fail, I suppose because it's too fast, while changing it to 0 makes it pass. --- tests/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index 40f710d9..5c83103f 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -90,4 +90,4 @@ class TestUtils(unittest.TestCase): os.utime(filename, (t, t)) changed = utils.files_changed(path, 'rst') self.assertEquals(changed, True) - self.assertAlmostEqual(utils.LAST_MTIME, t, places=2) + self.assertAlmostEqual(utils.LAST_MTIME, t, places=0)