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 e78bc30 commit f84f8a9Copy full SHA for f84f8a9
packages/aws-library/tests/test_ec2_client.py
@@ -604,7 +604,11 @@ async def test_set_instance_tags(
604
# now remove some real ones
605
tag_key_to_remove = random.choice(list(new_tags)) # noqa: S311
606
await simcore_ec2_api.remove_instances_tags(
607
- created_instances, tag_keys=[tag_key_to_remove]
+ created_instances,
608
+ tag_keys=[
609
+ tag_key_to_remove,
610
+ TypeAdapter(AWSTagKey).validate_python("whatever_i_dont_exist"),
611
+ ],
612
)
613
new_tags.pop(tag_key_to_remove)
614
await _assert_instances_in_ec2(
0 commit comments