Skip to content

Commit a90feca

Browse files
committed
Fix test
1 parent fa5eaac commit a90feca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/core/test_snapshot_evaluator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,8 @@ def test_cleanup_skip_missing_table(adapter_mock, make_snapshot):
520520
f"catalog.sqlmesh__test_schema.test_schema__test_model__{snapshot.fingerprint.to_version()}__dev"
521521
)
522522
adapter_mock.drop_table.assert_called_once_with(
523-
f"catalog.sqlmesh__test_schema.test_schema__test_model__{snapshot.fingerprint.to_version()}__dev"
523+
f"catalog.sqlmesh__test_schema.test_schema__test_model__{snapshot.fingerprint.to_version()}__dev",
524+
cascade=True,
524525
)
525526

526527

0 commit comments

Comments
 (0)