[#274] Fix iam_attach_group_policy function #274

Merged
abereziny merged 2 commits from r.chernykh/frostfs-testlib:test-iam into master 2024-08-05 12:48:59 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 1f0016f4db - Show all commits

View file

@ -975,7 +975,7 @@ class AwsCliClient(S3ClientWrapper):
response = self._to_json(output)
assert response.get("Policy"), f"Expected Policy in response:\n{response}"
assert response["Policy"].get("PolicyName") == policy_name, f"PolicyName should be equal to {policy_name}"
assert response["Policy"].get("Arn") == policy_arn, f"PolicyArn should be equal to {policy_arn}"
return response

View file

@ -408,7 +408,7 @@ class S3ClientWrapper(HumanReadableABC):
"""Adds the specified user to the specified group"""
@abstractmethod
def iam_attach_group_policy(self, group: str, policy_arn: str) -> dict:
def iam_attach_group_policy(self, group_name: str, policy_arn: str) -> dict:
"""Attaches the specified managed policy to the specified IAM group"""
@abstractmethod