Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
JCZuurmond committed Aug 12, 2024
1 parent 860ad36 commit 5749c37
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/integration/account/test_aggregate.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ def test_account_aggregate_finds_overlapping_tables(caplog, acc, ws, sql_backend
conflicts = account_aggregate.validate_table_locations()
assert "Overlapping table locations" in caplog.text
assert len(conflicts) == 1
assert "hive_metastore.d1.t1" in str(conflicts[0][0])
assert "hive_metastore.d1.t2" in str(conflicts[0][1])
assert len(conflicts[0]) == 2
assert "hive_metastore.d1.t1" == conflicts[0][0].key
assert "hive_metastore.d1.t2" == conflicts[0][1].key

0 comments on commit 5749c37

Please sign in to comment.