This commit is contained in:
Bert Blommers 2020-06-03 17:14:48 +01:00
parent b0da78c29d
commit d21088699e

View File

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