| Index: client/tests/kvm/tests/migration_with_reboot.py
|
| diff --git a/client/tests/kvm/tests/migration_with_reboot.py b/client/tests/kvm/tests/migration_with_reboot.py
|
| index a15f983965c8a4bbcafa95a1eb93a8aaab53c8d1..5dddb1274a04ed835925e037c9040e6dd0eecdd1 100644
|
| --- a/client/tests/kvm/tests/migration_with_reboot.py
|
| +++ b/client/tests/kvm/tests/migration_with_reboot.py
|
| @@ -1,4 +1,4 @@
|
| -import kvm_utils
|
| +from autotest_lib.client.virt import virt_utils
|
|
|
|
|
| def run_migration_with_reboot(test, params, env):
|
| @@ -27,7 +27,7 @@ def run_migration_with_reboot(test, params, env):
|
|
|
| try:
|
| # Reboot the VM in the background
|
| - bg = kvm_utils.Thread(vm.reboot, (session,))
|
| + bg = virt_utils.Thread(vm.reboot, (session,))
|
| bg.start()
|
| try:
|
| while bg.isAlive():
|
|
|