From 8deed4ecbed6b6486478a407b0a24f85e61e9370 Mon Sep 17 00:00:00 2001 From: kyleknap Date: Wed, 8 Oct 2014 12:35:24 -0700 Subject: Fix unit test for ec2 release_address --- tests/unit/ec2/test_address.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/ec2/test_address.py b/tests/unit/ec2/test_address.py index 8afdc5a8..519918e7 100644 --- a/tests/unit/ec2/test_address.py +++ b/tests/unit/ec2/test_address.py @@ -71,7 +71,7 @@ class AddressWithAllocationTest(unittest.TestCase): def test_release_calls_connection_release_address_with_correct_args(self): self.address.release() self.address.connection.release_address.assert_called_with( - association_id="aid1", + allocation_id="aid1", dry_run=False ) @@ -118,7 +118,7 @@ class AddressWithNetworkInterfaceTest(unittest.TestCase): def test_release_calls_connection_release_address_with_correct_args(self): self.address.release() self.address.connection.release_address.assert_called_with( - association_id="aid1", + allocation_id="aid1", dry_run=False ) -- cgit v1.2.1