fixup merge issue with test_elastic_ip_addresses.py

This commit is contained in:
rocky4570fft 2016-10-16 00:37:14 +10:00
commit 95e9ce2d42

View File

@ -196,6 +196,7 @@ def test_eip_associate_network_interface():
conn.associate_address(network_interface_id=eni.id, allocation_id=eip.allocation_id)
eip = conn.get_all_addresses(addresses=[eip.public_ip])[0] # no .update() on address ):
eip.network_interface_id.should.be.equal(eni.id)
conn.disassociate_address(association_id=eip.association_id)
eip = conn.get_all_addresses(addresses=[eip.public_ip])[0] # no .update() on address ):
eip.network_interface_id.should.be.equal(u'')