summaryrefslogtreecommitdiff
path: root/test/py/tests/test_android
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2022-02-11 13:23:23 -0700
committerTom Rini <[email protected]>2022-03-02 10:28:12 -0500
commit9e0077796faa917650fe8831009bbed1090286e6 (patch)
tree023ac2de40da59e1a91aa3f30a28cfd6ad20f758 /test/py/tests/test_android
parent68a0b7156a73ca401b409dab7baa410c42cdccfd (diff)
test: Correct pylint errors
Fix pylint errors in all test. This requires adding a get_spawn() method to the ConsoleBase base, so that its subclass is happy. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'test/py/tests/test_android')
-rw-r--r--test/py/tests/test_android/test_avb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_android/test_avb.py b/test/py/tests/test_android/test_avb.py
index a04a7ff264c..a3f883136b0 100644
--- a/test/py/tests/test_android/test_avb.py
+++ b/test/py/tests/test_android/test_avb.py
@@ -66,7 +66,7 @@ def test_avb_mmc_uuid(u_boot_console):
part_list[cur_partname] = guid_to_check[1]
# lets check all guids with avb get_guid
- for part, guid in part_list.iteritems():
+ for part, guid in part_list.items():
avb_guid_resp = u_boot_console.run_command('avb get_uuid %s' % part)
assert guid == avb_guid_resp.split('UUID: ')[1]