summaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authorLuca Ceresoli <luca@lucaceresoli.net>2017-05-27 23:58:46 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-05-28 14:54:43 +0200
commitad79bb50858aebd5296fbac981abd8b50b682ddf (patch)
tree010c5efef5d5aa5930c000767f0724438c935dcb /support
parentcfecdfadc1c980e3bb6dc86101b3b932a0969017 (diff)
downloadbuildroot-ad79bb50858aebd5296fbac981abd8b50b682ddf.tar.gz
buildroot-ad79bb50858aebd5296fbac981abd8b50b682ddf.zip
support/testing: rename variables for readability
The 'lines' variable is overwritten with its own fields. Thus it contains a line first, and then a list of fields -- it never contains 'lines'. Use two different variables named 'line' and 'fields' to make the code more readable. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Acked-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support')
-rw-r--r--support/testing/tests/fs/test_ext.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/support/testing/tests/fs/test_ext.py b/support/testing/tests/fs/test_ext.py
index 545bf1ed79..ea3d3f11d7 100644
--- a/support/testing/tests/fs/test_ext.py
+++ b/support/testing/tests/fs/test_ext.py
@@ -21,10 +21,10 @@ def dumpe2fs_run(builddir, image):
return ret.strip().splitlines()
def dumpe2fs_getprop(out, prop):
- for lines in out:
- lines = lines.split(": ")
- if lines[0] == prop:
- return lines[1].strip()
+ for line in out:
+ fields = line.split(": ")
+ if fields[0] == prop:
+ return fields[1].strip()
def boot_img_and_check_fs_type(emulator, builddir, fs_type):
img = os.path.join(builddir, "images", "rootfs.{}".format(fs_type))
OpenPOWER on IntegriCloud