Added "isTruncated" attribute for listUsersResponse (#4017)

* isTruncated attribute for listUsersResponse

* correction and test
This commit is contained in:
Cristopher Pinzón 2021-06-18 15:52:15 -05:00 committed by GitHub
commit e4057a34b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -808,6 +808,7 @@ def test_list_users():
user["UserName"].should.equal("my-user")
user["Path"].should.equal("/")
user["Arn"].should.equal("arn:aws:iam::{}:user/my-user".format(ACCOUNT_ID))
response["IsTruncated"].should.equal(False)
conn.create_user(UserName="my-user-1", Path="myUser")
response = conn.list_users(PathPrefix="my")