# HG changeset patch # User Pierre-Yves David # Date 1560518057 -3600 # Node ID eab66266180e861566395e7fe3126ab900335ffb # Parent 141bb77b606b6f45688db8bcdb017c6cfc24e157 run-tests: clarify "l" variable as "out_rawline" More explicit variable name never hurt. (This is a gratuitous cleanup that I made while investigating a bug). diff -r 141bb77b606b -r eab66266180e tests/run-tests.py --- a/tests/run-tests.py Fri Jun 14 13:59:47 2019 +0100 +++ b/tests/run-tests.py Fri Jun 14 14:14:17 2019 +0100 @@ -1611,10 +1611,10 @@ pos = -1 postout = [] - for l in output: - lout, lcmd = l, None - if salt in l: - lout, lcmd = l.split(salt, 1) + for out_rawline in output: + lout, lcmd = out_rawline, None + if salt in out_rawline: + lout, lcmd = out_rawline.split(salt, 1) while lout: if not lout.endswith(b'\n'):