Skip to content

Commit

Permalink
Relax test for table saving order
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Jun 18, 2024
1 parent a90eaf4 commit 2749ef9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -2200,11 +2200,11 @@ def test_update_other_formats(
# Ensure mtimes are correct
if update_other_formats:
if "pickle" in formats and "csv" in formats:
assert mtime["pickle"] > mtime["csv"]
assert mtime["pickle"] >= mtime["csv"]
if "pickle" in formats and "parquet" in formats:
assert mtime["pickle"] > mtime["parquet"]
assert mtime["pickle"] >= mtime["parquet"]
if "csv" in formats and "parquet" in formats:
assert mtime["csv"] > mtime["parquet"]
assert mtime["csv"] >= mtime["parquet"]
else:
for ext in existing_formats:
assert mtime[ext] == old_mtime[ext]
Expand Down

0 comments on commit 2749ef9

Please sign in to comment.