[#274] Fix iam_get_policy function

This commit is contained in:
Roman Chernykh 2024-08-02 17:38:56 +05:00 committed by Andrey Berezin
parent 54b42e2d8d
commit ae9e8d8c30

View file

@ -776,7 +776,7 @@ class Boto3ClientWrapper(S3ClientWrapper):
def iam_get_policy(self, policy_arn: str) -> dict: def iam_get_policy(self, policy_arn: str) -> dict:
response = self.boto3_iam_client.get_policy(PolicyArn=policy_arn) response = self.boto3_iam_client.get_policy(PolicyArn=policy_arn)
assert response.get("Policy"), f"Expected Policy in response:\n{response}" 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 return response