diff options
Diffstat (limited to 'resources/tools/presentation/input_data_parser.py')
-rw-r--r-- | resources/tools/presentation/input_data_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 11cbae7259..72d4253db0 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -825,7 +825,7 @@ class ExecutionChecker(ResultVisitor): result["completed-requests"] = int(groups.group(5)) result["failed-requests"] = int(groups.group(6)) result["bytes-transferred"] = int(groups.group(4)) - if "TCP_CPS"in tags: + if "TCP_CPS" in tags: result["cps"] = float(groups.group(3)) elif "TCP_RPS" in tags: result["rps"] = float(groups.group(3)) |