Update test_dynamodb.py

This commit is contained in:
Bert Blommers 2020-06-03 16:15:46 +01:00 committed by GitHub
parent 9ca10e3630
commit b0da78c29d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3045,7 +3045,7 @@ def test_batch_items_throws_exception_when_requesting_100_items_for_single_table
dynamodb.batch_get_item(
RequestItems={
"users": {
"Keys": [{"username": {"S": f"user{i}"}} for i in range(0, 104)],
"Keys": [{"username": {"S": "user" + str(i)}} for i in range(0, 104)],
"ConsistentRead": True,
}
}