diff options
author | Tibor Frank <tifrank@cisco.com> | 2020-09-24 09:40:01 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2020-09-24 09:44:00 +0200 |
commit | 7bcc61b0ab7fb4dd46fd38e361df6ef8aa8e181b (patch) | |
tree | eafb16f8151cbee0dba369113ba508119fb928bd /resources/tools/presentation/input_data_parser.py | |
parent | 844698802b99b67237250fd31e416081680354c0 (diff) |
Trending: Replace snat by nat
Change-Id: Ifcb1311d46b7134502b142933fd1574eb94cc230
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/input_data_parser.py')
-rw-r--r-- | resources/tools/presentation/input_data_parser.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index fcaf4a0d8e..e611c2c185 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -1038,11 +1038,16 @@ class ExecutionChecker(ResultVisitor): name = test.name.lower() # Remove TC number from the TC long name (backward compatibility): - self._test_id = re.sub(self.REGEX_TC_NUMBER, u"", longname) + self._test_id = re.sub( + self.REGEX_TC_NUMBER, u"", longname.replace(u"snat", u"nat") + ) # Remove TC number from the TC name (not needed): - test_result[u"name"] = re.sub(self.REGEX_TC_NUMBER, "", name) + test_result[u"name"] = re.sub( + self.REGEX_TC_NUMBER, "", name.replace(u"snat", u"nat") + ) - test_result[u"parent"] = test.parent.name.lower() + test_result[u"parent"] = test.parent.name.lower().\ + replace(u"snat", u"nat") test_result[u"tags"] = tags test_result["doc"] = test.doc.\ replace(u'"', u"'").\ |