mirror of
https://github.com/xemu-project/xemu.git
synced 2026-07-11 01:24:41 +02:00
tests/functional/migration: Fix bad indentation
pylint complains about bad indentation in two lines. Use 12 spaces instead of 11 spaces to get it right. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com> Message-ID: <20251027112347.54190-1-thuth@redhat.com>
This commit is contained in:
@@ -30,11 +30,11 @@ class MigrationTest(QemuSystemTest):
|
||||
|
||||
end = time.monotonic() + self.timeout
|
||||
while time.monotonic() < end and not self.migration_finished(src_vm):
|
||||
time.sleep(0.1)
|
||||
time.sleep(0.1)
|
||||
|
||||
end = time.monotonic() + self.timeout
|
||||
while time.monotonic() < end and not self.migration_finished(dst_vm):
|
||||
time.sleep(0.1)
|
||||
time.sleep(0.1)
|
||||
|
||||
self.assertEqual(src_vm.cmd('query-migrate')['status'], 'completed')
|
||||
self.assertEqual(dst_vm.cmd('query-migrate')['status'], 'completed')
|
||||
|
||||
Reference in New Issue
Block a user