Commit 14d8fe7d authored by Victor Stinner's avatar Victor Stinner

test_tarfile: woops, remove +0.001 which was used to debug

parent 26bfb5ab
......@@ -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),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment