From 2b9af63b4f4757cccad70b76960cfe8c7b9e6a49 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 23 Oct 2010 01:15:30 +0000 Subject: [PATCH] Try to fix test_tarfile on AMD64 debian parallel 3.x MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit tarinfo.mtime is an int, whereas getmtime() is a float and it might be different by something like 3 µs. --- Lib/test/test_tarfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py index 3a217dc815..fd7ac2bf49 100644 --- a/Lib/test/test_tarfile.py +++ b/Lib/test/test_tarfile.py @@ -345,7 +345,7 @@ class MiscReadTest(CommonReadTest): if sys.platform != "win32": # Win32 has no support for fine grained permissions. self.assertEqual(tarinfo.mode & 0o777, os.stat(path).st_mode & 0o777) - self.assertEqual(tarinfo.mtime, os.path.getmtime(path)) + self.assertEqual(tarinfo.mtime, int(os.path.getmtime(path))) finally: tar.close() -- 2.49.0