summaryrefslogtreecommitdiff
path: root/tests/helpers
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-12 13:15:41 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-01-13 20:26:57 +0100
commit14373db9c7f7bee0a7e0039da7bd6c039301031b (patch)
tree94543fb5dfc50ca662674d93ecaeba7be531d290 /tests/helpers
parent4d859c0d2cf914fde8f943bb051d96cdb18ed64d (diff)
downloadqutebrowser-14373db9c7f7bee0a7e0039da7bd6c039301031b.tar.gz
qutebrowser-14373db9c7f7bee0a7e0039da7bd6c039301031b.zip
dataclasses: Adjust import order
See #6023
Diffstat (limited to 'tests/helpers')
-rw-r--r--tests/helpers/fixtures.py2
-rw-r--r--tests/helpers/messagemock.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/helpers/fixtures.py b/tests/helpers/fixtures.py
index c62c9960b..2d853df08 100644
--- a/tests/helpers/fixtures.py
+++ b/tests/helpers/fixtures.py
@@ -33,8 +33,8 @@ import unittest.mock
import types
import mimetypes
import os.path
-
import dataclasses
+
import pytest
import py.path # pylint: disable=no-name-in-module
from PyQt5.QtCore import QSize, Qt
diff --git a/tests/helpers/messagemock.py b/tests/helpers/messagemock.py
index 72f170408..8eae9129c 100644
--- a/tests/helpers/messagemock.py
+++ b/tests/helpers/messagemock.py
@@ -20,8 +20,8 @@
"""pytest helper to monkeypatch the message module."""
import logging
-
import dataclasses
+
import pytest
from qutebrowser.utils import usertypes, message