diff options
Diffstat (limited to 'resources/tools/presentation/input_data_parser.py')
-rw-r--r-- | resources/tools/presentation/input_data_parser.py | 4 |
1 files changed, 2 insertions, 2 deletions
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" |