From b987914c72d400eaf7ffece492af99844c1a3770 Mon Sep 17 00:00:00 2001 From: Andy Altepeter Date: Tue, 24 Feb 2015 07:43:43 -0600 Subject: [PATCH] slight change in formatting --- tests/test_ec2/test_instances.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_ec2/test_instances.py b/tests/test_ec2/test_instances.py index 308254595..640a24eaf 100644 --- a/tests/test_ec2/test_instances.py +++ b/tests/test_ec2/test_instances.py @@ -155,7 +155,8 @@ def test_get_instances_filtering_by_instance_type(): reservations.should.have.length_of(2) reservations[0].instances.should.have.length_of(1) reservations[1].instances.should.have.length_of(1) - instance_ids = [ reservations[0].instances[0].id, reservations[1].instances[0].id ] + instance_ids = [ reservations[0].instances[0].id, + reservations[1].instances[0].id ] set(instance_ids).should.equal(set([instance1.id, instance2.id])) reservations = conn.get_all_instances(filters={'instance-type': 't1.micro'})