diff --git a/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroup_in_one_step.py b/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroup_in_one_step.py index 6851f97f2fbb3..43e8f4a4fdbf0 100644 --- a/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroup_in_one_step.py +++ b/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroup_in_one_step.py @@ -116,8 +116,8 @@ def delete_launch_template(template_name: str): ) start_pod = EksPodOperator( - task_id="start_pod", - pod_name="test_pod", + task_id="run_pod", + pod_name="run_pod", cluster_name=cluster_name, image="amazon/aws-cli:latest", cmds=["sh", "-c", "echo Test Airflow; date"], diff --git a/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroups.py b/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroups.py index 5a933be6bf8b0..e48243e81a262 100644 --- a/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroups.py +++ b/providers/amazon/tests/system/amazon/aws/example_eks_with_nodegroups.py @@ -135,8 +135,8 @@ def delete_launch_template(template_name: str): # [START howto_operator_eks_pod_operator] start_pod = EksPodOperator( - task_id="start_pod", - pod_name="test_pod", + task_id="run_pod", + pod_name="run_pod", cluster_name=cluster_name, image="amazon/aws-cli:latest", cmds=["sh", "-c", "echo Test Airflow; date"],