Fix typo in runner output 26/1126/1
authorraindirve <seanw@kth.se>
Thu, 6 Aug 2015 10:54:59 +0000 (12:54 +0200)
committerraindirve <seanw@kth.se>
Thu, 6 Aug 2015 11:00:18 +0000 (13:00 +0200)
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>
yardstick/benchmark/runners/arithmetic.py
yardstick/benchmark/runners/sequence.py

index f73d1cd..bae40eb 100755 (executable)
@@ -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" %
index 52bb69a..25b65b0 100644 (file)
@@ -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" %