diff --git a/providers/tests/google/cloud/sensors/test_vertex_ai.py b/providers/tests/google/cloud/sensors/test_vertex_ai.py index 36951346f6897..5e3171e988510 100644 --- a/providers/tests/google/cloud/sensors/test_vertex_ai.py +++ b/providers/tests/google/cloud/sensors/test_vertex_ai.py @@ -146,12 +146,3 @@ def test_timeout_during_error(self, mock_hook): match=f"Timeout: Feature View sync {FEATURE_VIEW_SYNC_NAME} not completed after 300s", ): sensor.poke(context={}) - - def test_missing_location(self): - with pytest.raises(TypeError, match="missing keyword argument 'location'"): - FeatureViewSyncSensor( - task_id=TASK_ID, - feature_view_sync_name=FEATURE_VIEW_SYNC_NAME, - gcp_conn_id=GCP_CONN_ID, - timeout=TIMEOUT, - )