Skip to content

Commit

Permalink
Merge branch 'master' into pdok-16629-use-pydantic
Browse files Browse the repository at this point in the history
  • Loading branch information
roelarents authored Nov 18, 2024
2 parents 51b9199 + 0608dcf commit a6ab7de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def compare_table_definitions(
old_projection = old_definition.projection
if new_projection != old_projection:
results.append(
f"different projections: {new_projection} changed to {old_projection}"
f"different projections: {old_projection} changed to {new_projection}"
)

new_tables: Dict[str, TableDefinition]
Expand Down
2 changes: 1 addition & 1 deletion tests/validations/test_table_definitions_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def test_table_definitions_check_incorrect_projection():
).check_table_definitions(current_definitions)

assert len(diff) == 1
assert diff[0] == "different projections: 4326 changed to 28992"
assert diff[0] == "different projections: 28992 changed to 4326"


def test_table_definitions_check_incorrect_column_name():
Expand Down

0 comments on commit a6ab7de

Please sign in to comment.