From: Thomas Petazzoni Date: Wed, 12 Aug 2020 14:29:01 +0000 (+0200) Subject: support/testing/tests/core/test_timezone.py: fix indentation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cc061128de8d99fd9e14c507b76d50852dce4f7d;p=buildroot.git support/testing/tests/core/test_timezone.py: fix indentation Fixes: support/testing/tests/core/test_timezone.py:7:9: E117 over-indented Signed-off-by: Thomas Petazzoni Reviewed-by: Titouan Christophe Signed-off-by: Thomas Petazzoni --- diff --git a/support/testing/tests/core/test_timezone.py b/support/testing/tests/core/test_timezone.py index 050624e0aa..f661519196 100644 --- a/support/testing/tests/core/test_timezone.py +++ b/support/testing/tests/core/test_timezone.py @@ -4,10 +4,10 @@ import infra.basetest def boot_armv5_cpio(emulator, builddir): - img = os.path.join(builddir, "images", "rootfs.cpio") - emulator.boot(arch="armv5", kernel="builtin", - options=["-initrd", img]) - emulator.login() + img = os.path.join(builddir, "images", "rootfs.cpio") + emulator.boot(arch="armv5", kernel="builtin", + options=["-initrd", img]) + emulator.login() class TestNoTimezone(infra.basetest.BRTest):