From b0da78c29de801dde9e8757f0e29e5044112e03b Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Wed, 3 Jun 2020 16:15:46 +0100 Subject: [PATCH] Update test_dynamodb.py --- tests/test_dynamodb2/test_dynamodb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_dynamodb2/test_dynamodb.py b/tests/test_dynamodb2/test_dynamodb.py index 19c585bf..8071a4d8 100644 --- a/tests/test_dynamodb2/test_dynamodb.py +++ b/tests/test_dynamodb2/test_dynamodb.py @@ -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, } }