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,