Skip to content

Commit

Permalink
Clarification, stricter validation
Browse files Browse the repository at this point in the history
  • Loading branch information
dogversioning committed Oct 23, 2023
1 parent 7589564 commit d4b78eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/site_upload/test_powerset_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def test_powerset_merge_single_upload(
if item["Key"].endswith(".parquet"):
assert item["Key"] == (f"{BucketPath.LAST_VALID.value}{upload_path}")
elif item["Key"].endswith(".csv"):
assert f"{upload_path.replace('.parquet','')}" in item["Key"]
assert f"{upload_path.replace('.parquet','.csv')}" in item["Key"]
else:
raise Exception("Invalid csv found at " f"{item['Key']}")
else:
Expand Down

0 comments on commit d4b78eb

Please sign in to comment.