From 1c80289e59a87ea778a9f58d873b86913d8b9361 Mon Sep 17 00:00:00 2001 From: Johannes Erdfelt Date: Thu, 12 Apr 2012 14:41:53 +0000 Subject: [PATCH] xenapi_conn -> xenapi.connection This keeps all of the XenAPI related code together in one directory, like libvirt. Change-Id: I1de51eb8bcead0695e9f8ede466416e0257d0148 --- nova/tests/test_xenapi.py | 2 +- nova/tests/xenapi/stubs.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nova/tests/test_xenapi.py b/nova/tests/test_xenapi.py index 5438db5c..8d6780f6 100644 --- a/nova/tests/test_xenapi.py +++ b/nova/tests/test_xenapi.py @@ -43,7 +43,7 @@ from nova.tests.glance import stubs as glance_stubs from nova.tests import fake_network from nova.tests import fake_utils from nova import utils -from nova.virt import xenapi_conn +from nova.virt.xenapi import connection as xenapi_conn from nova.virt.xenapi import fake as xenapi_fake from nova.virt.xenapi import volume_utils from nova.virt.xenapi import vmops diff --git a/nova/tests/xenapi/stubs.py b/nova/tests/xenapi/stubs.py index 58e6cf27..b13d2b0e 100644 --- a/nova/tests/xenapi/stubs.py +++ b/nova/tests/xenapi/stubs.py @@ -20,7 +20,7 @@ import random from eventlet import tpool -from nova.virt import xenapi_conn +from nova.virt.xenapi import connection as xenapi_conn from nova.virt.xenapi import fake from nova.virt.xenapi import volume_utils from nova.virt.xenapi import vm_utils