From a89e6e3a7fb413394f83c7ff248aa234a265837c Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Mon, 27 Jan 2020 15:24:08 +0100 Subject: PAL: Add latency by percentile graph Change-Id: I38c03e089fd709afc848ecec55474d5c6925a58e Signed-off-by: Tibor Frank (cherry picked from commit 6716e51e3a27cfd2850a399c9ccc2818c2038eaf) --- resources/tools/presentation/input_data_parser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'resources/tools/presentation/input_data_parser.py') diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index eeabaa8557..574f4950de 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -654,9 +654,9 @@ class ExecutionChecker(ResultVisitor): }, } - groups = re.search(self.REGEX_NDRPDR_LAT, msg) + groups = re.search(self.REGEX_NDRPDR_LAT_LONG, msg) if groups is None: - groups = re.search(self.REGEX_NDRPDR_LAT_LONG, msg) + groups = re.search(self.REGEX_NDRPDR_LAT, msg) if groups is None: return latency, u"FAIL" -- cgit 1.2.3-korg