From: Victor Stinner Date: Fri, 29 Oct 2010 11:02:06 +0000 (+0000) Subject: test_tarfile: woops, remove +0.001 which was used to debug X-Git-Tag: v3.2a4~300 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14d8fe7de85a99284f407ea282220b9a050ba940;p=thirdparty%2FPython%2Fcpython.git test_tarfile: woops, remove +0.001 which was used to debug --- diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py index 7a0d677ea0f8..c73b7b293020 100644 --- a/Lib/test/test_tarfile.py +++ b/Lib/test/test_tarfile.py @@ -350,7 +350,7 @@ class MiscReadTest(CommonReadTest): return "{} ({})".format(mtime, mtime.hex()) else: return "{!r} (int)".format(mtime) - file_mtime = os.path.getmtime(path) + 0.001 + file_mtime = os.path.getmtime(path) errmsg = "tar mtime {0} != file time {1} of path {2!a}".format( format_mtime(tarinfo.mtime), format_mtime(file_mtime),