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 3dda857 commit b553af7Copy full SHA for b553af7
tests/test_datafile.py
@@ -77,7 +77,7 @@ def test_file_attributes_accessible(self):
77
path = "path-within-dataset/a_test_file.csv"
78
df = Datafile(local_path_prefix=local_path_prefix, path=path, skip_checks=False)
79
self.assertIsInstance(df.size_bytes, int)
80
- self.assertEqual(1598200190.5771205, df.last_modified)
+ self.assertGreaterEqual(df.last_modified, 1598200190.5771205)
81
self.assertEqual("a_test_file.csv", df.name)
82
83
df.sequence = 2
0 commit comments