summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorStef T <stelford@internap.com>2012-10-30 12:02:50 -0400
committerStef T <stelford@internap.com>2012-11-26 12:00:03 -0500
commitb93e851c0d90c17868a0e68a3b54e136bb5cd54d (patch)
treebc9732505893fdb09b743e0981a856ab734d2f49 /nova/tests
parentb45ca52108a0b64f18885abb3c42cd4a2ff89ee8 (diff)
Missing instance_uuid in floating_ip notifications
* Addresses bug 1073212 Change-Id: I50327a9d7051d9ddb0a95a89b50037873011aff4
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/network/test_manager.py3
1 files changed, 3 insertions, 0 deletions
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'}