summaryrefslogtreecommitdiff
path: root/cinderclient/tests/unit
diff options
context:
space:
mode:
authordineshbhor <dinesh.bhor@nttdata.com>2016-11-03 14:37:57 +0530
committerdineshbhor <dinesh.bhor@nttdata.com>2016-11-03 18:29:31 +0530
commita01a3e1b7f6dd0919ffa15a4d54b84f0ac1e7915 (patch)
treed42f54b00028db42da29ee844328d8fd1c678580 /cinderclient/tests/unit
parent0ad9ed694a3859ddd6ba57416a3d301b273d70b8 (diff)
downloadpython-cinderclient-a01a3e1b7f6dd0919ffa15a4d54b84f0ac1e7915.tar.gz
Move old oslo-incubator code out of openstack/common
As part of the first community-wide goal, teams were asked to remove the openstack/common package of their projects if one existed. This was a byproduct of the old oslo-incubator form of syncing common functionality. The package, apiclient, was moved to a top level location and cliutils was moved to the common module. There are no oslo specific libraries, the recommended solution is to move it in tree and maintain it there. Change-Id: Iee52004bd33c19d63133577ff466164b85fd6ca6
Diffstat (limited to 'cinderclient/tests/unit')
-rw-r--r--cinderclient/tests/unit/test_base.py2
-rw-r--r--cinderclient/tests/unit/test_utils.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/cinderclient/tests/unit/test_base.py b/cinderclient/tests/unit/test_base.py
index 587925a..e42c34c 100644
--- a/cinderclient/tests/unit/test_base.py
+++ b/cinderclient/tests/unit/test_base.py
@@ -14,10 +14,10 @@
from requests import Response
from cinderclient import api_versions
+from cinderclient.apiclient import base as common_base
from cinderclient import base
from cinderclient.v3 import client
from cinderclient import exceptions
-from cinderclient.openstack.common.apiclient import base as common_base
from cinderclient.v1 import volumes
from cinderclient.tests.unit import utils
from cinderclient.tests.unit import test_utils
diff --git a/cinderclient/tests/unit/test_utils.py b/cinderclient/tests/unit/test_utils.py
index c7f9f06..4262b4a 100644
--- a/cinderclient/tests/unit/test_utils.py
+++ b/cinderclient/tests/unit/test_utils.py
@@ -18,10 +18,10 @@ import mock
from six import moves
from cinderclient import api_versions
+from cinderclient.apiclient import base as common_base
from cinderclient import exceptions
from cinderclient import utils
from cinderclient import base
-from cinderclient.openstack.common.apiclient import base as common_base
from cinderclient.tests.unit import utils as test_utils
from cinderclient.tests.unit.v2 import fakes