Skip to content

Commit

Permalink
fix: run pre-commit checks locally
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabe-Levin committed Oct 25, 2024
1 parent 6ce7c49 commit cd2f843
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions space2stats_api/src/tests/metadata_tests/test_stac_columns.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ def test_stac_columns_vs_types_json(stac_file_path, types_json_file_path):
}

# Assert that the number of columns in the STAC file matches the number of columns in the types JSON file
assert len(stac_columns) == len(
expected_columns
assert (
len(stac_columns) == len(expected_columns)
), f"Mismatch in column count: STAC ({len(stac_columns)}) vs JSON ({len(expected_columns)})"

# Assert that column names and types match
Expand Down

0 comments on commit cd2f843

Please sign in to comment.