Skip to content

Commit

Permalink
Remove unexpected assert
Browse files Browse the repository at this point in the history
  • Loading branch information
abikouo committed Dec 11, 2023
1 parent 3a78325 commit 3cb13c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/integration/targets/ec2_vpc_nat_gateway/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,8 @@
- update_tags_ngw.subnet_id == subnet_id
- '"tags" in update_tags_ngw'
- update_tags_ngw.tags | length == 2
- CHECK_MODE] - update_tags_ngw.tags["tag_one"] == resource_prefix +' One'
- CHECK_MODE] - update_tags_ngw.tags["Tag Two"] == 'two '+ resource_prefix
- update_tags_ngw.tags["tag_one"] == resource_prefix +' One'
- update_tags_ngw.tags["Tag Two"] == 'two '+ resource_prefix
- '"vpc_id" in update_tags_ngw'
- update_tags_ngw.vpc_id == vpc_id

Expand Down Expand Up @@ -631,8 +631,8 @@
- second_ngw.tags | length == 2
- '"tag_one" in second_ngw.tags'
- '"Tag Two" in second_ngw.tags'
- CHECK_MODE] - second_ngw.tags["tag_one"] == resource_prefix +' One'
- CHECK_MODE] - second_ngw.tags["Tag Two"] == 'two '+ resource_prefix
- second_ngw.tags["tag_one"] == resource_prefix +' One'
- second_ngw.tags["Tag Two"] == 'two '+ resource_prefix
- '"vpc_id" in second_ngw'
- second_ngw.vpc_id == vpc_id
vars:
Expand Down

0 comments on commit 3cb13c9

Please sign in to comment.