We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fc79fa commit 2af63afCopy full SHA for 2af63af
packages/pytest-simcore/src/pytest_simcore/helpers/aws_ec2.py
@@ -144,10 +144,9 @@ def _by_pre_pull_image(ec2_tag: TagTypeDef) -> bool:
144
iter(filter(_by_pre_pull_image, instance["Tags"]))
145
)
146
assert "Value" in instance_pre_pulled_images_aws_tag
147
- assert (
148
- json_loads(instance_pre_pulled_images_aws_tag["Value"]).sort()
149
- == expected_pre_pulled_images.sort()
150
- )
+ assert sorted(
+ json_loads(instance_pre_pulled_images_aws_tag["Value"])
+ ) == sorted(expected_pre_pulled_images)
151
152
assert "PrivateDnsName" in instance
153
instance_private_dns_name = instance["PrivateDnsName"]
0 commit comments