diff options
| author | Thomas Huth <thuth@redhat.com> | 2024-07-19 11:50:31 +0200 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2024-07-22 13:54:23 +0200 |
| commit | 816d4201ea8c926fddf766b37abc3e5ff03bb0dd (patch) | |
| tree | a2ee9a245891e677276c077dd898affa3bda0b0a /tests/avocado/replay_linux.py | |
| parent | 49269895a02fb05765e0d326cfcafa409fa4f642 (diff) | |
| download | focaccia-qemu-816d4201ea8c926fddf766b37abc3e5ff03bb0dd.tar.gz focaccia-qemu-816d4201ea8c926fddf766b37abc3e5ff03bb0dd.zip | |
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/replay_linux.py')
| -rw-r--r-- | tests/avocado/replay_linux.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/avocado/replay_linux.py b/tests/avocado/replay_linux.py index f3a43dc98c..b4673261ce 100644 --- a/tests/avocado/replay_linux.py +++ b/tests/avocado/replay_linux.py @@ -19,7 +19,7 @@ from avocado.utils import network from avocado.utils import vmimage from avocado.utils import datadrainer from avocado.utils.path import find_command -from avocado_qemu import LinuxTest +from avocado_qemu.linuxtest import LinuxTest class ReplayLinux(LinuxTest): """ |