aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/cli_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/cli_tests.py')
-rwxr-xr-xsrc/scripts/cli_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/cli_tests.py b/src/scripts/cli_tests.py
index 03ce4de48..b4e973c2b 100755
--- a/src/scripts/cli_tests.py
+++ b/src/scripts/cli_tests.py
@@ -113,7 +113,7 @@ def get_testdata(document, max_tests):
for direction in ['encrypt', 'decrypt']:
testname = "{} no {:0>3} ({})".format(
algorithm.lower(), testcase_number, direction)
- testname = re.sub("[^-a-z0-9-]", "_", testname)
+ testname = re.sub("[^a-z0-9-]", "_", testname)
testname = re.sub("_+", "_", testname)
testname = testname.strip("_")
out[testname] = {}