Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions providers/tests/google/cloud/operators/test_datacatalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def test_assert_valid_hook_call(self, mock_xcom, mock_hook) -> None:
"project_id": TEST_PROJECT_ID,
},
)
assert TEST_TAG_TEMPLATE_DICT == result
assert {**result, **TEST_TAG_TEMPLATE_DICT} == result


class TestCloudDataCatalogCreateTagTemplateFieldOperator:
Expand Down Expand Up @@ -418,7 +418,7 @@ def test_assert_valid_hook_call(self, mock_xcom, mock_hook) -> None:
"project_id": TEST_PROJECT_ID,
},
)
assert TEST_TAG_TEMPLATE_FIELD_DICT == result
assert {**result, **TEST_TAG_TEMPLATE_FIELD_DICT} == result


class TestCloudDataCatalogDeleteEntryOperator:
Expand Down