We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf6bcbc commit c9756d9Copy full SHA for c9756d9
tests/integration/expectations/test_operation.py
@@ -205,6 +205,10 @@ def test_check_columns(dataset_path):
205
assert result
206
assert "2 out of 2 tables had expected columns" in message
207
208
+ assert details[0]["table"] == "entity"
209
+ assert any(x in details[0]["actual"] for x in expected["entity"])
210
+ assert any(x in details[0]["expected"] for x in expected["entity"])
211
+
212
213
def test_check_columns_failure(dataset_path):
214
expected = {
0 commit comments