Skip to content

Commit 6815b87

Browse files
Fix mistakes in comments
Signed-off-by: Gilles Peskine <[email protected]>
1 parent af8a770 commit 6815b87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/bin/mbedtls-run-tests

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
"""Run Mbed TLS unit tests.
44
5-
By default, run all test casess. If at least one of --prefix, --regex or
5+
By default, run all test cases. If at least one of --prefix, --regex or
66
--substring is specified, only run the test cases that match any of these
77
options.
88
"""
@@ -29,7 +29,7 @@ class TestCaseFilter:
2929
include += '|' + re.escape(string)
3030
for regex in options.regex:
3131
include += '|.*' + regex
32-
if include: # no filter specified
32+
if include:
3333
include = include[1:] # remove the leading '|'
3434
self.include = re.compile(include.encode())
3535
if options.exclude:

0 commit comments

Comments
 (0)