Skip to content

Commit eaef4ea

Browse files
feriferi
feri
authored and
feri
committed
rollback templating tests for wrong operator
1 parent 96e8b9d commit eaef4ea

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

providers/google/tests/unit/google/cloud/operators/test_vertex_ai.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1216,10 +1216,6 @@ def test_templating(self, create_task_instance_of_operator, session):
12161216
region="{{ 'region' }}",
12171217
project_id="{{ 'project_id' }}",
12181218
impersonation_chain="{{ 'impersonation-chain' }}",
1219-
template_path="{{ 'template-path' }}",
1220-
pipeline_root="{{ 'pipeline-root' }}",
1221-
service_account="{{ 'service-account' }}",
1222-
parameter_values={"{{ 'parameter-key' }}": "{{ 'parameter-value' }}"},
12231219
# Other parameters
12241220
dag_id="test_template_body_templating_dag",
12251221
task_id="test_template_body_templating_task",
@@ -1233,10 +1229,6 @@ def test_templating(self, create_task_instance_of_operator, session):
12331229
assert task.region == "region"
12341230
assert task.project_id == "project_id"
12351231
assert task.impersonation_chain == "impersonation-chain"
1236-
assert task.template_path == "template-path"
1237-
assert task.pipeline_root == "pipeline-root"
1238-
assert task.service_account == "service-account"
1239-
assert task.parameter_values == {"parameter-key": "parameter-value"}
12401232
assert task.training_pipeline_id == "training-pipeline-id"
12411233
assert task.custom_job_id == "custom_job_id"
12421234

0 commit comments

Comments
 (0)