Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
markuman committed Dec 1, 2023
1 parent f47ad74 commit e60b55d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@

- assert:
that:
- 'An error occurred (ActiveInstanceRefreshNotFound) when calling the CancelInstanceRefresh operation: No in progress or pending Instance Refresh found for Auto Scaling group ' ~ resource_prefix ~ '-asg' in result.msg
- "'An error occurred (ActiveInstanceRefreshNotFound) when calling the CancelInstanceRefresh operation: No in progress or pending Instance Refresh found for Auto Scaling group ' ~ resource_prefix ~ '-asg' in result.msg"

- name: test starting a refresh with a valid ASG name - check_mode
autoscaling_instance_refresh:
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/targets/codepipeline/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
- assert:
that:
- output.changed == True
- output.pipeline.name == "{{ codepipeline_name }}"
- output.pipeline.name == codepipeline_name
- output.pipeline.stages|length > 1

- name: idempotence check rerunning same CodePipeline task
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
- assert:
that:
- result.changed == True
- "'instance_snapshot' in result and result.instance_snapshot.name == '{{ snapshot_name }}'"
- "'instance_snapshot' in result and result.instance_snapshot.name == snapshot_name"
- "result.instance_snapshot.state == 'available'"

- name: Make sure instance snapshot creation is idempotent
Expand Down

0 comments on commit e60b55d

Please sign in to comment.