diff --git a/providers/tests/google/cloud/operators/test_datacatalog.py b/providers/tests/google/cloud/operators/test_datacatalog.py index 4247831933337..577852baf6b61 100644 --- a/providers/tests/google/cloud/operators/test_datacatalog.py +++ b/providers/tests/google/cloud/operators/test_datacatalog.py @@ -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: @@ -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: