diff options
author | raindirve <seanw@kth.se> | 2015-08-06 12:54:59 +0200 |
---|---|---|
committer | raindirve <seanw@kth.se> | 2015-08-06 13:00:18 +0200 |
commit | c4c0e13e93dfa0aeef0a51dd0f4b00610baac592 (patch) | |
tree | 929e53add2fa62c7a2df1da9397e6f0b516f31ba | |
parent | 28592cc73a69c686aa3de9cd8cf18a8752c0f6b9 (diff) |
Fix typo in runner output
Sequence and Arithmetic runners have an extra colon
in their 'sargs:' output. This commit removes that
unnecessary and incorrect character.
Change-Id: I9bb1af5397812318e94e3bd71c680605c4917c1a
JIRA: YARDSTICK-98
Signed-off-by: raindirve <seanw@kth.se>
-rwxr-xr-x | yardstick/benchmark/runners/arithmetic.py | 2 | ||||
-rw-r--r-- | yardstick/benchmark/runners/sequence.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/yardstick/benchmark/runners/arithmetic.py b/yardstick/benchmark/runners/arithmetic.py index f73d1cd0c..bae40eb75 100755 --- a/yardstick/benchmark/runners/arithmetic.py +++ b/yardstick/benchmark/runners/arithmetic.py @@ -82,7 +82,7 @@ def _worker_process(queue, cls, method_name, context, scenario_args): 'errors': errors } - queue.put({'context': record_context, 'sargs:': scenario_args, + queue.put({'context': record_context, 'sargs': scenario_args, 'benchmark': benchmark_output}) LOG.debug("runner=%(runner)s seq=%(sequence)s END" % diff --git a/yardstick/benchmark/runners/sequence.py b/yardstick/benchmark/runners/sequence.py index 52bb69abf..25b65b0b8 100644 --- a/yardstick/benchmark/runners/sequence.py +++ b/yardstick/benchmark/runners/sequence.py @@ -82,7 +82,7 @@ def _worker_process(queue, cls, method_name, context, scenario_args): 'errors': errors } - queue.put({'context': record_context, 'sargs:': scenario_args, + queue.put({'context': record_context, 'sargs': scenario_args, 'benchmark': benchmark_output}) LOG.debug("runner=%(runner)s seq=%(sequence)s END" % |