diff options
author | Emma Foley <emma.l.foley@intel.com> | 2018-01-10 10:48:29 +0000 |
---|---|---|
committer | Emma Foley <emma.l.foley@intel.com> | 2018-01-25 20:03:46 +0000 |
commit | 44ee5e004f3af5dcdbbc1d172faba91b8419b6d6 (patch) | |
tree | f81cd5a5af0f267f981339d9ac0d4eba5c666264 /tests/unit/benchmark/scenarios/availability/test_util.py | |
parent | e67082ecf9c89eeebbdf2c87b0a90e3edef2eabd (diff) |
Make files pep8 compliant before using assertTrue|False
JIRA: YARDSTICK-903
Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Change-Id: Id7912b5ddee36e7366bcfa824379853efd0a89f1
Diffstat (limited to 'tests/unit/benchmark/scenarios/availability/test_util.py')
-rw-r--r-- | tests/unit/benchmark/scenarios/availability/test_util.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/benchmark/scenarios/availability/test_util.py b/tests/unit/benchmark/scenarios/availability/test_util.py index 03dc70e2a..55a0d160a 100644 --- a/tests/unit/benchmark/scenarios/availability/test_util.py +++ b/tests/unit/benchmark/scenarios/availability/test_util.py @@ -16,13 +16,14 @@ import unittest from yardstick.benchmark.scenarios.availability import util + class ExecuteShellTestCase(unittest.TestCase): def setUp(self): self.param_config = {'serviceName': '@serviceName', 'value': 1} self.intermediate_variables = {'@serviceName': 'nova-api'} self.std_output = '| id | 1 |' - self.cmd_config = {'cmd':'ls', 'param':'-a'} + self.cmd_config = {'cmd': 'ls', 'param': '-a'} self._mock_subprocess = mock.patch.object(util, 'subprocess') self.mock_subprocess = self._mock_subprocess.start() |