From b93e851c0d90c17868a0e68a3b54e136bb5cd54d Mon Sep 17 00:00:00 2001 From: Stef T Date: Tue, 30 Oct 2012 12:02:50 -0400 Subject: Missing instance_uuid in floating_ip notifications * Addresses bug 1073212 Change-Id: I50327a9d7051d9ddb0a95a89b50037873011aff4 --- nova/tests/network/test_manager.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'nova/tests') diff --git a/nova/tests/network/test_manager.py b/nova/tests/network/test_manager.py index 698ce8f59..4ba0a6946 100644 --- a/nova/tests/network/test_manager.py +++ b/nova/tests/network/test_manager.py @@ -676,6 +676,7 @@ class VlanNetworkTestCase(test.TestCase): def fake5(*args, **kwargs): return {'address': '10.0.0.1', 'pool': 'nova', + 'instance_uuid': FAKEUUID, 'interface': 'eth0', 'network_id': 'blahblah'} @@ -706,6 +707,7 @@ class VlanNetworkTestCase(test.TestCase): ctxt, mox.IgnoreArg(), mox.IgnoreArg(), + mox.IgnoreArg(), mox.IgnoreArg()) self.stubs.Set(self.network, '_floating_ip_owned_by_project', fake1) @@ -822,6 +824,7 @@ class VlanNetworkTestCase(test.TestCase): def fake5(*args, **kwargs): return {'address': '10.0.0.1', 'pool': 'nova', + 'instance_uuid': FAKEUUID, 'interface': 'eth0', 'network_id': 'blahblah'} -- cgit