diff options
author | Jelmer Vernooij <jelmer@jelmer.uk> | 2023-01-31 19:08:26 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@jelmer.uk> | 2023-01-31 19:53:38 +0000 |
commit | 291b44e10e448be5439e510ef02f2fe709649b8f (patch) | |
tree | ab85339cda13dfcdaec84e98c41600d379125e80 /python/subunit/tests/test_test_protocol2.py | |
parent | e9f6eef3a0961cdb0a1b823ebbfd7bc289f63cf3 (diff) | |
download | subunit-git-291b44e10e448be5439e510ef02f2fe709649b8f.tar.gz |
Sort Python import definitions with isort
Diffstat (limited to 'python/subunit/tests/test_test_protocol2.py')
-rw-r--r-- | python/subunit/tests/test_test_protocol2.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/subunit/tests/test_test_protocol2.py b/python/subunit/tests/test_test_protocol2.py index 0b40929..1f542d5 100644 --- a/python/subunit/tests/test_test_protocol2.py +++ b/python/subunit/tests/test_test_protocol2.py @@ -14,22 +14,22 @@ # limitations under that license. # -from io import BytesIO import datetime +from io import BytesIO try: from hypothesis import given -# To debug hypothesis -# from hypothesis import Settings, Verbosity -# Settings.default.verbosity = Verbosity.verbose + # To debug hypothesis + # from hypothesis import Settings, Verbosity + # Settings.default.verbosity = Verbosity.verbose import hypothesis.strategies as st except ImportError: given = None st = None from testtools import TestCase from testtools.matchers import Contains, HasLength -from testtools.tests.test_testresult import TestStreamResultContract from testtools.testresult.doubles import StreamResult +from testtools.tests.test_testresult import TestStreamResultContract import subunit import subunit.iso8601 as iso8601 |