tests: Do not use tabs for indentation
Be more consistent with indentation (always uses spaces in Python files). Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
a274b1bcbb
commit
0663ae22ff
7 changed files with 52 additions and 52 deletions
|
@ -252,13 +252,13 @@ def main():
|
|||
|
||||
# read the modules from the modules file
|
||||
if args.mfile:
|
||||
args.testmodules = []
|
||||
with open(args.mfile) as f:
|
||||
for line in f.readlines():
|
||||
line = line.strip()
|
||||
if not line or line.startswith('#'):
|
||||
continue
|
||||
args.testmodules.append(line)
|
||||
args.testmodules = []
|
||||
with open(args.mfile) as f:
|
||||
for line in f.readlines():
|
||||
line = line.strip()
|
||||
if not line or line.startswith('#'):
|
||||
continue
|
||||
args.testmodules.append(line)
|
||||
|
||||
tests_to_run = []
|
||||
if args.tests:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue