summaryrefslogtreecommitdiff
path: root/tests/unit/utils/test_qtutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/utils/test_qtutils.py')
-rw-r--r--tests/unit/utils/test_qtutils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/utils/test_qtutils.py b/tests/unit/utils/test_qtutils.py
index 84084de33..8a0071970 100644
--- a/tests/unit/utils/test_qtutils.py
+++ b/tests/unit/utils/test_qtutils.py
@@ -216,12 +216,12 @@ def test_ensure_valid(obj, raising, exc_reason, exc_str):
(
QtCore.QDataStream.ReadCorruptData,
True,
- "The data stream has read corrupt " "data.",
+ "The data stream has read corrupt data.",
),
(
QtCore.QDataStream.WriteFailed,
True,
- "The data stream cannot write to the " "underlying device.",
+ "The data stream cannot write to the underlying device.",
),
],
)