Browse Source

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 <thuth@redhat.com>
pull/307/head
Thomas Huth 10 months ago
parent
commit
72f6657402
  1. 6
      tests/functional/qemu_test/linuxkernel.py

6
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'):

Loading…
Cancel
Save