Tests: do not use the same variable name in nested loops

Spotted by LGTM.com.
This commit is contained in:
Rolf Eike Beer
2019-12-31 13:30:18 +01:00
parent a07134e339
commit 397d162b9a

View File

@@ -60,8 +60,8 @@ with open(args.trace, 'r') as fp:
assert isinstance(line['file'], unicode)
assert isinstance(line['line'], int)
for i in required_traces:
if i['cmd'] == line['cmd'] and i['args'] == line['args']:
i['found'] = True
for j in required_traces:
if j['cmd'] == line['cmd'] and j['args'] == line['args']:
j['found'] = True
assert all([x.get('found', False) == True for x in required_traces])