#2445 - DynamoDB - Fix tests after adding AttributeDefinitions-validation

This commit is contained in:
Bert Blommers 2019-10-03 11:57:14 +01:00
parent 6005b19ac2
commit c783b8721f

View File

@ -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,