Fix compliance tests

Change I65c50722f5990f540d84fa361b997302bbc935c5 moved our base test
code from cinder.test to cinder.tests.unit.test. It included updates for
all unit tests, but missed the compliance tests that are also based on
it.

This fixes the imports for the compliance tests to use the new location
to import the module.

Change-Id: I510f7707085b917ed45e674eeffb67c9ca444088
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2020-05-11 14:46:19 -05:00
parent beb96cd710
commit 2f390afcaf
No known key found for this signature in database
GPG Key ID: CE7EE4BFAF8D70C8
3 changed files with 3 additions and 3 deletions

View File

@ -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()

View File

@ -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()

View File

@ -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()