diff options
| author | Jason Kölker <jason@koelker.net> | 2011-05-24 16:25:04 -0500 |
|---|---|---|
| committer | Jason Kölker <jason@koelker.net> | 2011-05-24 16:25:04 -0500 |
| commit | f41f8d2be5239dd9d2810bfaf6f432c713907c7f (patch) | |
| tree | 949f29827bf203a64ae9e471f7a893d55076ad9b | |
| parent | 4ee88c529760fcf2a20a3721f7c189a5067ea498 (diff) | |
work on
| -rw-r--r-- | nova/tests/test_virt.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nova/tests/test_virt.py b/nova/tests/test_virt.py index d1ef2d43f..6c552e963 100644 --- a/nova/tests/test_virt.py +++ b/nova/tests/test_virt.py @@ -625,10 +625,11 @@ class IptablesFirewallTestCase(test.TestCase): # Should probably do something more inteligent networks_ref = db.project_get_networks(self.context, 'fake', - associate=False)[0] + associate=False) + print networks_ref mac_address = {'address': '56:12:12:12:12:12', - 'network_id': network_ref['id'], + 'network_id': networks_ref['id'], 'instance_id': instance_ref['id']} mac_ref = db.mac_address_create(self.context, mac_address) |
