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:
Jouni Malinen 2019-03-15 11:18:20 +02:00 committed by Jouni Malinen
parent c675397cc3
commit 2f22ed4fab

View file

@ -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: