From: Thomas Huth Date: Mon, 13 Oct 2025 14:18:14 +0000 (+0200) Subject: tests/functional: Fix problems in linuxkernel.py reported by pylint X-Git-Tag: v10.2.0-rc1~25^2~18 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=72f6657402145f9019380c6d96e3f7f601bbb271;p=thirdparty%2Fqemu.git tests/functional: Fix problems in linuxkernel.py reported by pylint Use proper indentation here. Message-ID: <20251015095454.1575318-3-thuth@redhat.com> Signed-off-by: Thomas Huth --- diff --git a/tests/functional/qemu_test/linuxkernel.py b/tests/functional/qemu_test/linuxkernel.py index c4767527da..eb10a81335 100644 --- a/tests/functional/qemu_test/linuxkernel.py +++ b/tests/functional/qemu_test/linuxkernel.py @@ -83,12 +83,12 @@ class LinuxKernelTest(QemuSystemTest): self.vm.set_console(console_index=console_index) self.vm.add_args('-kernel', kernel) if initrd: - self.vm.add_args('-initrd', initrd) + self.vm.add_args('-initrd', initrd) if dtb: - self.vm.add_args('-dtb', dtb) + self.vm.add_args('-dtb', dtb) self.vm.launch() if wait_for: - self.wait_for_console_pattern(wait_for) + self.wait_for_console_pattern(wait_for) def check_http_download(self, filename, hashsum, guestport=8080, pythoncmd='python3 -m http.server'):