diff options
Diffstat (limited to 'src/scripts/cli_tests.py')
-rwxr-xr-x | src/scripts/cli_tests.py | 2 |
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] = {} |