summaryrefslogtreecommitdiff
path: root/tests/test_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_shell.py')
-rw-r--r--tests/test_shell.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/test_shell.py b/tests/test_shell.py
index cf4fc924..87a7795a 100644
--- a/tests/test_shell.py
+++ b/tests/test_shell.py
@@ -13,10 +13,10 @@
# under the License.
#
+import fixtures
import os
import mock
-import fixtures
from openstackclient import shell as os_shell
from tests import utils
@@ -47,8 +47,7 @@ def make_shell():
return _shell
-class ShellTest(utils.TestCase):
-
+class TestShell(utils.TestCase):
FAKE_ENV = {
'OS_AUTH_URL': DEFAULT_AUTH_URL,
'OS_TENANT_ID': DEFAULT_TENANT_ID,
@@ -60,7 +59,7 @@ class ShellTest(utils.TestCase):
def setUp(self):
""" Patch os.environ to avoid required auth info"""
- super(ShellTest, self).setUp()
+ super(TestShell, self).setUp()
for var in self.FAKE_ENV:
self.useFixture(
fixtures.EnvironmentVariable(
@@ -85,7 +84,7 @@ class ShellTest(utils.TestCase):
def tearDown(self):
#self.auth_patch.stop()
self.cmd_patch.stop()
- super(ShellTest, self).tearDown()
+ super(TestShell, self).tearDown()
def test_shell_args(self):
sh = make_shell()