Skip to content
Snippets Groups Projects
Commit e519df43 authored by Willian Rampazzo's avatar Willian Rampazzo Committed by Philippe Mathieu-Daudé
Browse files

avocado_qemu: fix inheritance order on LinuxTest class


Class hierarchy on Python is defined from right to left. Although the
current code is not harmful, let's fix it to avoid problems in the future.

Signed-off-by: default avatarWillian Rampazzo <willianr@redhat.com>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210920204932.94132-7-willianr@redhat.com>
parent 6c58af2e
No related branches found
No related tags found
No related merge requests found
......@@ -424,7 +424,7 @@ def default_kernel_params(self):
return self._info.get('kernel_params', None)
class LinuxTest(Test, LinuxSSHMixIn):
class LinuxTest(LinuxSSHMixIn, Test):
"""Facilitates having a cloud-image Linux based available.
For tests that indend to interact with guests, this is a better choice
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment