Test fix - Region must be specified

This commit is contained in:
Bert Blommers 2020-01-22 11:42:06 +00:00
parent 6f02782624
commit 7ff7ee4e8e

View File

@ -2533,7 +2533,7 @@ def test_condition_expressions():
@mock_dynamodb2
def test_condition_expression_numerical_attribute():
dynamodb = boto3.resource("dynamodb")
dynamodb = boto3.resource("dynamodb", region_name="us-east-1")
dynamodb.create_table(
TableName="my-table",
KeySchema=[{"AttributeName": "partitionKey", "KeyType": "HASH"}],