We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2348518 commit 762ee06Copy full SHA for 762ee06
tests/test_osfs.py
@@ -111,7 +111,7 @@ def test_copy_preserve_time(self):
111
self.assertTrue(self.fs.exists("bar/file.txt"))
112
113
dst_info = self.fs.getinfo("bar/file.txt", namespaces)
114
- self.assertEqual(dst_info.modified, src_info.modified)
+ self.assertAlmostEqual(dst_info.modified, src_info.modified, places=2)
115
116
@unittest.skipUnless(osfs.sendfile, "sendfile not supported")
117
@unittest.skipIf(
0 commit comments