aboutsummaryrefslogtreecommitdiff
path: root/tests/avocado/hotplug_cpu.py
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2024-07-19 11:50:31 +0200
committerThomas Huth <thuth@redhat.com>2024-07-22 13:54:23 +0200
commit816d4201ea8c926fddf766b37abc3e5ff03bb0dd (patch)
treea2ee9a245891e677276c077dd898affa3bda0b0a /tests/avocado/hotplug_cpu.py
parent49269895a02fb05765e0d326cfcafa409fa4f642 (diff)
tests/avocado: Move LinuxTest related code into a separate file
Only some few tests are using the LinuxTest class. Move the related code into a separate file so that this does not pollute the main namespace. Message-ID: <20240719095031.32814-1-thuth@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/avocado/hotplug_cpu.py')
-rw-r--r--tests/avocado/hotplug_cpu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/avocado/hotplug_cpu.py b/tests/avocado/hotplug_cpu.py
index 292bb43e4d..342c838539 100644
--- a/tests/avocado/hotplug_cpu.py
+++ b/tests/avocado/hotplug_cpu.py
@@ -8,7 +8,7 @@
# This work is licensed under the terms of the GNU GPL, version 2 or
# later. See the COPYING file in the top-level directory.
-from avocado_qemu import LinuxTest
+from avocado_qemu.linuxtest import LinuxTest
class HotPlugCPU(LinuxTest):