2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 06:15:24 +00:00

test: fix flake8 errors

The newest version of flake reports errors that variable names like 'l'
should not be used, because they are hard to read.

This changes 'l' to 'line' to make flake8 happy.

Signed-off-by: Adrian Reber <areber@redhat.com>
This commit is contained in:
Adrian Reber
2020-06-05 07:55:18 +02:00
committed by Andrei Vagin
parent d23d1fc0f9
commit be2ded15ee

View File

@@ -2047,11 +2047,11 @@ def grep_errors(fname):
print_next = False
before = []
with open(fname, errors='replace') as fd:
for l in fd:
before.append(l)
for line in fd:
before.append(line)
if len(before) > 5:
before.pop(0)
if "Error" in l or "Warn" in l:
if "Error" in line or "Warn" in line:
if first:
print_fname(fname, 'log')
print_sep("grep Error", "-", 60)
@@ -2061,7 +2061,7 @@ def grep_errors(fname):
before = []
else:
if print_next:
print_next = print_error(l)
print_next = print_error(line)
before = []
if not first:
print_sep("ERROR OVER", "-", 60)