diff --git a/cinder/tests/compliance/test_backup_drivers.py b/cinder/tests/compliance/test_backup_drivers.py index bad607a07ab..a86ae6d7201 100644 --- a/cinder/tests/compliance/test_backup_drivers.py +++ b/cinder/tests/compliance/test_backup_drivers.py @@ -18,7 +18,7 @@ import ddt from cinder.interface import backup_driver from cinder.interface import util -from cinder import test +from cinder.tests.unit import test BACKUP_DRIVERS = util.get_backup_drivers() diff --git a/cinder/tests/compliance/test_fczm_drivers.py b/cinder/tests/compliance/test_fczm_drivers.py index 95d39b9667a..02def55efd5 100644 --- a/cinder/tests/compliance/test_fczm_drivers.py +++ b/cinder/tests/compliance/test_fczm_drivers.py @@ -18,7 +18,7 @@ import ddt from cinder.interface import fczm_driver from cinder.interface import util -from cinder import test +from cinder.tests.unit import test FCZM_DRIVERS = util.get_fczm_drivers() diff --git a/cinder/tests/compliance/test_volume_drivers.py b/cinder/tests/compliance/test_volume_drivers.py index 5bfc0b131f3..77659d994c4 100644 --- a/cinder/tests/compliance/test_volume_drivers.py +++ b/cinder/tests/compliance/test_volume_drivers.py @@ -18,7 +18,7 @@ import ddt from cinder.interface import util from cinder.interface import volume_driver -from cinder import test +from cinder.tests.unit import test VOLUME_DRIVERS = util.get_volume_drivers()