diff options
| author | Brandon Palm <bapalm@us.ibm.com> | 2016-02-23 10:38:58 -0600 |
|---|---|---|
| committer | Brandon Palm <bapalm@us.ibm.com> | 2016-02-23 10:38:58 -0600 |
| commit | f49f0fead2933ace4cb85c70bd14d13d0c479e6a (patch) | |
| tree | 8d3dacfb9fb599c23fdb489ad84daac804cab714 /openstackclient/tests/test_shell.py | |
| parent | 02e5b6f41d2b5f026ce1f1f5b7026d5968a7c20f (diff) | |
| download | python-openstackclient-f49f0fead2933ace4cb85c70bd14d13d0c479e6a.tar.gz | |
Fixed a bunch of spacing
Nothing too complicated here. I fixed a bunch of spacing issues
that I saw in OSC.
Change-Id: I935ab48e7c5bac5f88ecdb3a05f73fb44fc9f41d
Diffstat (limited to 'openstackclient/tests/test_shell.py')
| -rw-r--r-- | openstackclient/tests/test_shell.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/openstackclient/tests/test_shell.py b/openstackclient/tests/test_shell.py index 80b18161..4a8968cf 100644 --- a/openstackclient/tests/test_shell.py +++ b/openstackclient/tests/test_shell.py @@ -161,6 +161,7 @@ def fake_execute(shell, cmd): class TestShell(utils.TestCase): + def setUp(self): super(TestShell, self).setUp() patch = "openstackclient.shell.OpenStackShell.run_subcommand" @@ -280,6 +281,7 @@ class TestShell(utils.TestCase): class TestShellHelp(TestShell): """Test the deferred help flag""" + def setUp(self): super(TestShellHelp, self).setUp() self.orig_env, os.environ = os.environ, {} @@ -304,6 +306,7 @@ class TestShellHelp(TestShell): class TestShellOptions(TestShell): + def setUp(self): super(TestShellOptions, self).setUp() self.orig_env, os.environ = os.environ, {} @@ -391,6 +394,7 @@ class TestShellOptions(TestShell): class TestShellTokenAuthEnv(TestShell): + def setUp(self): super(TestShellTokenAuthEnv, self).setUp() env = { @@ -438,6 +442,7 @@ class TestShellTokenAuthEnv(TestShell): class TestShellTokenEndpointAuthEnv(TestShell): + def setUp(self): super(TestShellTokenEndpointAuthEnv, self).setUp() env = { @@ -485,6 +490,7 @@ class TestShellTokenEndpointAuthEnv(TestShell): class TestShellCli(TestShell): + def setUp(self): super(TestShellCli, self).setUp() env = { @@ -706,6 +712,7 @@ class TestShellCli(TestShell): class TestShellCliEnv(TestShell): + def setUp(self): super(TestShellCliEnv, self).setUp() env = { |
