Skip to content

Commit b2876e1

Browse files
committed
Fix failing test due to missing param
1 parent 473de5a commit b2876e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/command.bats

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ expected_container_definition='[\n {\n "essential": true,\n "image": "hel
217217
export BUILDKITE_PLUGIN_ECS_DEPLOY_EXECUTION_ROLE=arn:aws:iam::012345678910:role/world
218218

219219
stub aws \
220-
"ecs register-task-definition --family hello-world --container-definitions $'$expected_container_definition' : echo '{\"taskDefinition\":{\"revision\":1}}'" \
220+
"ecs register-task-definition --family hello-world --container-definitions $'$expected_container_definition' --execution-role-arn arn:aws:iam::012345678910:role/world : echo '{\"taskDefinition\":{\"revision\":1}}'" \
221221
"ecs describe-services --cluster my-cluster --service my-service --query 'services[?status==\`ACTIVE\`].status' --output text : echo '1'" \
222222
"ecs describe-services --cluster my-cluster --services my-service --query 'services[?status==\`ACTIVE\`]' : echo 'null'" \
223223
"ecs update-service --cluster my-cluster --service my-service --task-definition hello-world:1 : echo ok" \

0 commit comments

Comments
 (0)