From 3a8268fd5609e454850477d7e8d7876c7f66cb65 Mon Sep 17 00:00:00 2001 From: Vladimir Sudilovsky Date: Mon, 18 Apr 2016 16:08:08 -0400 Subject: [PATCH] opsworks/tests: add missing region_name='us-east-1' in client init --- tests/test_opsworks/test_instances.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_opsworks/test_instances.py b/tests/test_opsworks/test_instances.py index 28187c2b0..e24486a2f 100644 --- a/tests/test_opsworks/test_instances.py +++ b/tests/test_opsworks/test_instances.py @@ -157,7 +157,7 @@ def test_ec2_integration(): StackId=stack_id, LayerIds=[layer_id], InstanceType="t2.micro" )['InstanceId'] - ec2 = boto3.client('ec2') + ec2 = boto3.client('ec2', region_name='us-east-1') # Before starting the instance, it shouldn't be discoverable via ec2 reservations = ec2.describe_instances()['Reservations']