diff options
author | Jing Lu <lvjing5@huawei.com> | 2017-06-24 09:17:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-06-24 09:17:51 +0000 |
commit | 3ca356db275f543bcbbb39701207a0faa2e29e02 (patch) | |
tree | c6c81ac80b1930eb5fabc2496a020ea9250be481 /tests/unit/benchmark/core | |
parent | c04372b8630169a3fcc4b52e8d2b935f110519a6 (diff) | |
parent | acc757fc7cf9db54d97d4563cd294efafc3f7747 (diff) |
Merge "Yardstick output format unified"
Diffstat (limited to 'tests/unit/benchmark/core')
-rw-r--r-- | tests/unit/benchmark/core/test_task.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit/benchmark/core/test_task.py b/tests/unit/benchmark/core/test_task.py index 8034392f4..b64bb8eed 100644 --- a/tests/unit/benchmark/core/test_task.py +++ b/tests/unit/benchmark/core/test_task.py @@ -65,6 +65,7 @@ class TaskTestCase(unittest.TestCase): runner = mock.Mock() runner.join.return_value = 0 runner.get_output.return_value = {} + runner.get_result.return_value = [] mock_base_runner.Runner.get.return_value = runner t._run([scenario], False, "yardstick.out") self.assertTrue(runner.run.called) |