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

This commit is contained in:
Victor Stinner 2010-10-29 11:02:06 +00:00
parent 26bfb5ab82
commit 14d8fe7de8
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ class MiscReadTest(CommonReadTest):
return "{} ({})".format(mtime, mtime.hex()) return "{} ({})".format(mtime, mtime.hex())
else: else:
return "{!r} (int)".format(mtime) 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( errmsg = "tar mtime {0} != file time {1} of path {2!a}".format(
format_mtime(tarinfo.mtime), format_mtime(tarinfo.mtime),
format_mtime(file_mtime), format_mtime(file_mtime),