Skip to content

Commit

Permalink
chore(deps-dev): bump moto from 5.0.15 to 5.0.16 (#5256)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sergio <[email protected]>
  • Loading branch information
dependabot[bot] and MrCloudSec authored Oct 2, 2024
1 parent 469986d commit 158263a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ docker = "7.1.0"
flake8 = "7.1.1"
freezegun = "1.5.1"
mock = "5.1.0"
moto = {extras = ["all"], version = "5.0.15"}
moto = {extras = ["all"], version = "5.0.16"}
openapi-schema-validator = "0.6.2"
openapi-spec-validator = "0.7.1"
pylint = "3.3.1"
Expand Down
4 changes: 2 additions & 2 deletions tests/providers/aws/aws_provider_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -997,11 +997,11 @@ def test_get_tagged_resources(self):
],
)
instance_id = instances["Instances"][0]["InstanceId"]
instance_arn = f"arn:aws:ec2:{AWS_REGION_EU_CENTRAL_1}::instance/{instance_id}"
instance_arn = f"arn:aws:ec2:{AWS_REGION_EU_CENTRAL_1}:{AWS_ACCOUNT_NUMBER}:ec2:instance/{instance_id}"
image_id = ec2_client.create_image(Name="testami", InstanceId=instance_id)[
"ImageId"
]
image_arn = f"arn:aws:ec2:{AWS_REGION_EU_CENTRAL_1}::image/{image_id}"
image_arn = f"arn:aws:ec2:{AWS_REGION_EU_CENTRAL_1}:{AWS_ACCOUNT_NUMBER}:ec2:image/{image_id}"
ec2_client.create_tags(
Resources=[image_id], Tags=[{"Key": "ami", "Value": "test"}]
)
Expand Down

0 comments on commit 158263a

Please sign in to comment.