mirror of https://github.com/python/cpython
test_tarfile: woops, remove +0.001 which was used to debug
This commit is contained in:
parent
26bfb5ab82
commit
14d8fe7de8
|
@ -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),
|
||||||
|
|
Loading…
Reference in New Issue