tests: Fix run-tests.py module file (-l) handling
Prior cleanup broke the indentation here and made the addition of test
cases unreachable.
Fixes: 0663ae22ff
("tests: Do not use tabs for indentation")
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
c675397cc3
commit
2f22ed4fab
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ def main():
|
|||
line = line.strip()
|
||||
if not line or line.startswith('#'):
|
||||
continue
|
||||
args.testmodules.append(line)
|
||||
args.testmodules.append(line)
|
||||
|
||||
tests_to_run = []
|
||||
if args.tests:
|
||||
|
|
Loading…
Reference in a new issue