summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/unit/ec2/test_address.py4
1 files 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
)