Skip to content

Commit b553af7

Browse files
committed
FIX Updated test so that checked out files don't have to have the same last_modified date
1 parent 3dda857 commit b553af7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_datafile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def test_file_attributes_accessible(self):
7777
path = "path-within-dataset/a_test_file.csv"
7878
df = Datafile(local_path_prefix=local_path_prefix, path=path, skip_checks=False)
7979
self.assertIsInstance(df.size_bytes, int)
80-
self.assertEqual(1598200190.5771205, df.last_modified)
80+
self.assertGreaterEqual(df.last_modified, 1598200190.5771205)
8181
self.assertEqual("a_test_file.csv", df.name)
8282

8383
df.sequence = 2

0 commit comments

Comments
 (0)