Skip to content

Commit

Permalink
Fix Google Cloud Datacatalog test (#44037)
Browse files Browse the repository at this point in the history
This field (`dataplex_transfer_status`) got added in googleapis/google-cloud-python#13277 as part of `google-cloud-datacatalog==3.22.0`
  • Loading branch information
kaxil authored Nov 14, 2024
1 parent 4b491ef commit 060f75f
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 060f75f

Please sign in to comment.