Revert r85801. The test ought to pass without rounding.

This commit is contained in:
Martin v. Löwis 2010-10-23 19:02:30 +00:00
parent fbb1c6191c
commit 57f75799bf
1 changed files with 1 additions and 1 deletions

View File

@ -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, int(os.path.getmtime(path)))
self.assertEqual(tarinfo.mtime, os.path.getmtime(path))
finally:
tar.close()