summaryrefslogtreecommitdiff
path: root/cinderclient/tests/unit/v2
diff options
context:
space:
mode:
Diffstat (limited to 'cinderclient/tests/unit/v2')
-rw-r--r--cinderclient/tests/unit/v2/contrib/test_list_extensions.py4
-rw-r--r--cinderclient/tests/unit/v2/fakes.py1
-rw-r--r--cinderclient/tests/unit/v2/test_capabilities.py3
-rw-r--r--cinderclient/tests/unit/v2/test_pools.py3
-rw-r--r--cinderclient/tests/unit/v2/test_shell.py2
-rw-r--r--cinderclient/tests/unit/v2/test_type_access.py3
-rw-r--r--cinderclient/tests/unit/v2/test_types.py3
7 files changed, 6 insertions, 13 deletions
diff --git a/cinderclient/tests/unit/v2/contrib/test_list_extensions.py b/cinderclient/tests/unit/v2/contrib/test_list_extensions.py
index 313b6ef..4b6100f 100644
--- a/cinderclient/tests/unit/v2/contrib/test_list_extensions.py
+++ b/cinderclient/tests/unit/v2/contrib/test_list_extensions.py
@@ -15,11 +15,9 @@
# under the License.
from cinderclient import extension
-from cinderclient.v2.contrib import list_extensions
-
from cinderclient.tests.unit import utils
from cinderclient.tests.unit.v2 import fakes
-
+from cinderclient.v2.contrib import list_extensions
extensions = [
extension.Extension(list_extensions.__name__.split(".")[-1],
diff --git a/cinderclient/tests/unit/v2/fakes.py b/cinderclient/tests/unit/v2/fakes.py
index 99a87d0..4c09e9d 100644
--- a/cinderclient/tests/unit/v2/fakes.py
+++ b/cinderclient/tests/unit/v2/fakes.py
@@ -13,7 +13,6 @@
# limitations under the License.
from datetime import datetime
-
from urllib import parse as urlparse
from cinderclient import client as base_client
diff --git a/cinderclient/tests/unit/v2/test_capabilities.py b/cinderclient/tests/unit/v2/test_capabilities.py
index 01a132d..98d8d71 100644
--- a/cinderclient/tests/unit/v2/test_capabilities.py
+++ b/cinderclient/tests/unit/v2/test_capabilities.py
@@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
-from cinderclient.v2.capabilities import Capabilities
-
from cinderclient.tests.unit import utils
from cinderclient.tests.unit.v2 import fakes
+from cinderclient.v2.capabilities import Capabilities
cs = fakes.FakeClient()
diff --git a/cinderclient/tests/unit/v2/test_pools.py b/cinderclient/tests/unit/v2/test_pools.py
index 543e316..e909871 100644
--- a/cinderclient/tests/unit/v2/test_pools.py
+++ b/cinderclient/tests/unit/v2/test_pools.py
@@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
-from cinderclient.v2.pools import Pool
-
from cinderclient.tests.unit import utils
from cinderclient.tests.unit.v2 import fakes
+from cinderclient.v2.pools import Pool
cs = fakes.FakeClient()
diff --git a/cinderclient/tests/unit/v2/test_shell.py b/cinderclient/tests/unit/v2/test_shell.py
index f54846e..78ecf74 100644
--- a/cinderclient/tests/unit/v2/test_shell.py
+++ b/cinderclient/tests/unit/v2/test_shell.py
@@ -14,11 +14,11 @@
# under the License.
from unittest import mock
+from urllib import parse
import ddt
import fixtures
from requests_mock.contrib import fixture as requests_mock_fixture
-from urllib import parse
from cinderclient import client
from cinderclient import exceptions
diff --git a/cinderclient/tests/unit/v2/test_type_access.py b/cinderclient/tests/unit/v2/test_type_access.py
index 35a4480..d904c1d 100644
--- a/cinderclient/tests/unit/v2/test_type_access.py
+++ b/cinderclient/tests/unit/v2/test_type_access.py
@@ -14,10 +14,9 @@
# License for the specific language governing permissions and limitations
# under the License.
-from cinderclient.v2 import volume_type_access
-
from cinderclient.tests.unit import utils
from cinderclient.tests.unit.v2 import fakes
+from cinderclient.v2 import volume_type_access
cs = fakes.FakeClient()
diff --git a/cinderclient/tests/unit/v2/test_types.py b/cinderclient/tests/unit/v2/test_types.py
index 9ba13a9..cf13723 100644
--- a/cinderclient/tests/unit/v2/test_types.py
+++ b/cinderclient/tests/unit/v2/test_types.py
@@ -14,10 +14,9 @@
# License for the specific language governing permissions and limitations
# under the License.
-from cinderclient.v2 import volume_types
-
from cinderclient.tests.unit import utils
from cinderclient.tests.unit.v2 import fakes
+from cinderclient.v2 import volume_types
cs = fakes.FakeClient()