* IAM - get_user() #3828 - fixing issue where the get_user method does not return tags * adding get_user with tags test
This commit is contained in:
parent
15eda737d6
commit
6ea6445f60
2 changed files with 4 additions and 3 deletions
|
|
@ -4075,7 +4075,8 @@ def test_create_user_with_tags():
|
|||
assert resp["User"]["Tags"] == tags
|
||||
resp = conn.list_user_tags(UserName=user_name)
|
||||
assert resp["Tags"] == tags
|
||||
|
||||
resp = conn.get_user(UserName=user_name)
|
||||
assert resp["User"]["Tags"] == tags
|
||||
resp = conn.create_user(UserName="test-create-user-no-tags")
|
||||
assert "Tags" not in resp["User"]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue