From c783b8721f20e1df413a4021d68e222a4d0289e7 Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Thu, 3 Oct 2019 11:57:14 +0100 Subject: [PATCH] #2445 - DynamoDB - Fix tests after adding AttributeDefinitions-validation --- .../test_dynamodb_table_with_range_key.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tests/test_dynamodb2/test_dynamodb_table_with_range_key.py b/tests/test_dynamodb2/test_dynamodb_table_with_range_key.py index e64d7d196..7d1975eda 100644 --- a/tests/test_dynamodb2/test_dynamodb_table_with_range_key.py +++ b/tests/test_dynamodb2/test_dynamodb_table_with_range_key.py @@ -1765,6 +1765,14 @@ def test_boto3_update_table_gsi_throughput(): 'AttributeName': 'subject', 'AttributeType': 'S' }, + { + 'AttributeName': 'username', + 'AttributeType': 'S' + }, + { + 'AttributeName': 'created', + 'AttributeType': 'S' + } ], ProvisionedThroughput={ 'ReadCapacityUnits': 5, @@ -1939,6 +1947,14 @@ def test_update_table_gsi_throughput(): 'AttributeName': 'subject', 'AttributeType': 'S' }, + { + 'AttributeName': 'username', + 'AttributeType': 'S' + }, + { + 'AttributeName': 'created', + 'AttributeType': 'S' + } ], ProvisionedThroughput={ 'ReadCapacityUnits': 5,