Mechanically correct import of functional base class
base.py includes some base test class functionality. This change simply updates the import of the base package to do the import from the right location. Note that this change does not concern itself with pep8 issues (alphabetical ordering of imports) as those will be addressed later. Change-Id: I5ff9a0be45c7ac76cc4c13a1f3c8ef12a288f50e
This commit is contained in:
parent
53bc5a75b1
commit
ed8baeb717
@ -19,7 +19,7 @@ from placement.objects import consumer as consumer_obj
|
||||
from placement.objects import project as project_obj
|
||||
from placement.objects import resource_provider as rp_obj
|
||||
from placement.objects import user as user_obj
|
||||
from nova.tests.functional.api.openstack.placement import base
|
||||
from placement.tests.functional import base
|
||||
from nova.tests import uuidsentinel as uuids
|
||||
|
||||
|
||||
|
@ -20,7 +20,7 @@ from placement.objects import project as project_obj
|
||||
from placement.objects import resource_provider as rp_obj
|
||||
from placement.objects import user as user_obj
|
||||
from placement import rc_fields as fields
|
||||
from nova.tests.functional.api.openstack.placement import base
|
||||
from placement.tests.functional import base
|
||||
from nova.tests.functional.db import test_base as tb
|
||||
from nova.tests import uuidsentinel as uuids
|
||||
|
||||
|
@ -18,7 +18,7 @@ from oslo_utils import timeutils
|
||||
from placement import exception
|
||||
from placement import resource_class_cache as rc_cache
|
||||
from placement import rc_fields as fields
|
||||
from nova.tests.functional.api.openstack.placement import base
|
||||
from placement.tests.functional import base
|
||||
|
||||
|
||||
class TestResourceClassCache(base.TestCase):
|
||||
|
@ -13,7 +13,7 @@
|
||||
from oslo_config import cfg
|
||||
|
||||
from placement import direct
|
||||
from nova.tests.functional.api.openstack.placement import base
|
||||
from placement.tests.functional import base
|
||||
from nova.tests import uuidsentinel
|
||||
|
||||
|
||||
|
@ -14,7 +14,7 @@ from oslo_config import cfg
|
||||
|
||||
from placement import direct
|
||||
from placement import handler
|
||||
from nova.tests.functional.api.openstack.placement import base
|
||||
from placement.tests.functional import base
|
||||
|
||||
|
||||
CONF = cfg.CONF
|
||||
|
Loading…
x
Reference in New Issue
Block a user