slight change in formatting

This commit is contained in:
Andy Altepeter 2015-02-24 07:43:43 -06:00
parent b66ee09abe
commit b987914c72

View File

@ -155,7 +155,8 @@ def test_get_instances_filtering_by_instance_type():
reservations.should.have.length_of(2) reservations.should.have.length_of(2)
reservations[0].instances.should.have.length_of(1) reservations[0].instances.should.have.length_of(1)
reservations[1].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])) set(instance_ids).should.equal(set([instance1.id, instance2.id]))
reservations = conn.get_all_instances(filters={'instance-type': 't1.micro'}) reservations = conn.get_all_instances(filters={'instance-type': 't1.micro'})