aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/runners
diff options
context:
space:
mode:
Diffstat (limited to 'yardstick/benchmark/runners')
-rw-r--r--yardstick/benchmark/runners/arithmetic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/runners/arithmetic.py b/yardstick/benchmark/runners/arithmetic.py
index a3aceb35d..acf14d08a 100644
--- a/yardstick/benchmark/runners/arithmetic.py
+++ b/yardstick/benchmark/runners/arithmetic.py
@@ -49,7 +49,7 @@ def _worker_process(queue, cls, method_name, context, scenario_args):
if "sla" in scenario_args:
sla_action = scenario_args["sla"].get("action", "assert")
- for value in range(start, stop, step):
+ for value in range(start, stop+step, step):
options[arg_name] = value