summaryrefslogtreecommitdiff
path: root/tests/test_asyncio/test_pubsub.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_asyncio/test_pubsub.py')
-rw-r--r--tests/test_asyncio/test_pubsub.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_asyncio/test_pubsub.py b/tests/test_asyncio/test_pubsub.py
index 6dedca9..37b7206 100644
--- a/tests/test_asyncio/test_pubsub.py
+++ b/tests/test_asyncio/test_pubsub.py
@@ -411,7 +411,7 @@ class TestPubSubMessages:
with pytest.raises(RuntimeError) as info:
await p.get_message()
expect = (
- "connection not set: " "did you forget to call subscribe() or psubscribe()?"
+ "connection not set: did you forget to call subscribe() or psubscribe()?"
)
assert expect in info.exconly()