aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2020-03-30 20:00:06 -0400
committerMax Reitz <mreitz@redhat.com>2020-05-05 13:17:36 +0200
commitb404b13bd519301c99e603ac660122158ea5b93b (patch)
treee98cb53bdee9ba0d2d2e26fce76f9d95b700ca37 /tests
parent576dc22be11d3cd95eec0e75ec5603cde671a370 (diff)
downloadqemu-b404b13bd519301c99e603ac660122158ea5b93b.zip
qemu-b404b13bd519301c99e603ac660122158ea5b93b.tar.gz
qemu-b404b13bd519301c99e603ac660122158ea5b93b.tar.bz2
iotests: alphabetize standard imports
I had to fix a merge conflict, so do this tiny harmless thing while I'm here. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Message-Id: <20200331000014.11581-7-jsnow@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/qemu-iotests/iotests.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index d8dc602..dae1248 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -16,19 +16,19 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+import atexit
+from collections import OrderedDict
+import faulthandler
+import io
+import json
+import logging
import os
import re
+import signal
+import struct
import subprocess
-import unittest
import sys
-import struct
-import json
-import signal
-import logging
-import atexit
-import io
-from collections import OrderedDict
-import faulthandler
+import unittest
# pylint: disable=import-error, wrong-import-position
sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python'))