diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-06-27 14:26:08 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-06-27 14:26:08 +0000 |
| commit | 2d5e53c9df16139cafee4f9c8111e0ec9b162ff0 (patch) | |
| tree | 067847912ea0f2033e00b2d4e74deecf4ffe7f98 /nova/tests | |
| parent | bf77ba39e5b181590d8e67b7f8446f04b0df3506 (diff) | |
| parent | eb52c017a182892e6a62ce5b2ddc30f027311341 (diff) | |
Merge "xenapi: Make BitTorrent url more flexible"
Diffstat (limited to 'nova/tests')
| -rw-r--r-- | nova/tests/virt/xenapi/test_vm_utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/tests/virt/xenapi/test_vm_utils.py b/nova/tests/virt/xenapi/test_vm_utils.py index 68caab651..6884ab5a8 100644 --- a/nova/tests/virt/xenapi/test_vm_utils.py +++ b/nova/tests/virt/xenapi/test_vm_utils.py @@ -266,7 +266,7 @@ class FetchVhdImageTestCase(test.TestCase): self._apply_stubouts() self._common_params_setup(True) - vm_utils._add_bittorrent_params(self.params) + vm_utils._add_bittorrent_params(self.image_id, self.params) vm_utils._fetch_using_dom0_plugin_with_retry(self.context, self.session, self.image_id, "bittorrent", self.params, @@ -289,7 +289,7 @@ class FetchVhdImageTestCase(test.TestCase): self._common_params_setup(True) self.mox.StubOutWithMock(self.session, 'call_xenapi') - vm_utils._add_bittorrent_params(self.params) + vm_utils._add_bittorrent_params(self.image_id, self.params) vm_utils._fetch_using_dom0_plugin_with_retry(self.context, self.session, self.image_id, "bittorrent", self.params, |
