[fix] cognito-idp list_users Filter arg now support spaces (#3317)
This commit is contained in:
parent
cc0bd5213f
commit
7ce1e87477
2 changed files with 8 additions and 1 deletions
|
|
@ -1085,6 +1085,13 @@ def test_list_users():
|
|||
result["Users"].should.have.length_of(1)
|
||||
result["Users"][0]["Username"].should.equal(username_bis)
|
||||
|
||||
# checking Filter with space
|
||||
result = conn.list_users(
|
||||
UserPoolId=user_pool_id, Filter='phone_number = "+33666666666'
|
||||
)
|
||||
result["Users"].should.have.length_of(1)
|
||||
result["Users"][0]["Username"].should.equal(username_bis)
|
||||
|
||||
|
||||
@mock_cognitoidp
|
||||
def test_list_users_returns_limit_items():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue