Skip to content

Commit

Permalink
Remove unnecessary print stmts
Browse files Browse the repository at this point in the history
  • Loading branch information
limitusus committed Jun 14, 2020
1 parent 9314a79 commit 5b8c592
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_iam/test_iam.py
Original file line number Diff line number Diff line change
Expand Up @@ -1690,7 +1690,6 @@ def test_get_account_authorization_details():
assert result["RoleDetailList"][0]["AttachedManagedPolicies"][0][
"PolicyArn"
] == "arn:aws:iam::{}:policy/testPolicy".format(ACCOUNT_ID)
print(result["RoleDetailList"][0]["RolePolicyList"][0]["PolicyDocument"])
assert result["RoleDetailList"][0]["RolePolicyList"][0][
"PolicyDocument"
] == json.loads(test_policy)
Expand Down Expand Up @@ -1728,7 +1727,6 @@ def test_get_account_authorization_details():
assert result["GroupDetailList"][0]["AttachedManagedPolicies"][0][
"PolicyArn"
] == "arn:aws:iam::{}:policy/testPolicy".format(ACCOUNT_ID)
print(result["GroupDetailList"][0]["GroupPolicyList"][0]["PolicyDocument"])
assert result["GroupDetailList"][0]["GroupPolicyList"][0][
"PolicyDocument"
] == json.loads(test_policy)
Expand Down

0 comments on commit 5b8c592

Please sign in to comment.