]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/functional/migration: Fix bad indentation
authorThomas Huth <thuth@redhat.com>
Mon, 27 Oct 2025 11:23:47 +0000 (12:23 +0100)
committerThomas Huth <thuth@redhat.com>
Mon, 3 Nov 2025 07:27:59 +0000 (08:27 +0100)
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>

tests/functional/migration.py

index 073955448328dca03e935c915ff9d4dc6f104b23..2bfb1f7790126a29aaad56710fac2d70b63e8a5e 100644 (file)
@@ -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')