@@ -1216,10 +1216,6 @@ def test_templating(self, create_task_instance_of_operator, session):
1216
1216
region = "{{ 'region' }}" ,
1217
1217
project_id = "{{ 'project_id' }}" ,
1218
1218
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' }}" },
1223
1219
# Other parameters
1224
1220
dag_id = "test_template_body_templating_dag" ,
1225
1221
task_id = "test_template_body_templating_task" ,
@@ -1233,10 +1229,6 @@ def test_templating(self, create_task_instance_of_operator, session):
1233
1229
assert task .region == "region"
1234
1230
assert task .project_id == "project_id"
1235
1231
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" }
1240
1232
assert task .training_pipeline_id == "training-pipeline-id"
1241
1233
assert task .custom_job_id == "custom_job_id"
1242
1234
0 commit comments