summaryrefslogtreecommitdiff
path: root/tests/unit/misc/test_ipc.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-29 19:32:42 +0200
committerFlorian Bruhin <me@the-compiler.org>2021-03-29 23:45:38 +0200
commit5c14bfd8c6670519e06d01115624de8c6afd49a5 (patch)
treec3e64f75faf16d96f541354262e429c339cc2660 /tests/unit/misc/test_ipc.py
parent76c8d20f6a678e39359775a1a6d727633ada7ec7 (diff)
downloadqutebrowser-5c14bfd8c6670519e06d01115624de8c6afd49a5.tar.gz
qutebrowser-5c14bfd8c6670519e06d01115624de8c6afd49a5.zip
ipc: Fix socket handling
Speculatively fixes #5344 (cherry picked from commit 4a2c6c76241d6554e5fa3cfe358cfe16646728a0)
Diffstat (limited to 'tests/unit/misc/test_ipc.py')
-rw-r--r--tests/unit/misc/test_ipc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/misc/test_ipc.py b/tests/unit/misc/test_ipc.py
index c19d0bc42..7df7d53c4 100644
--- a/tests/unit/misc/test_ipc.py
+++ b/tests/unit/misc/test_ipc.py
@@ -605,7 +605,7 @@ def test_ipcserver_socket_none_readyread(ipc_server, caplog):
assert ipc_server._old_socket is None
with caplog.at_level(logging.WARNING):
ipc_server.on_ready_read()
- msg = "In on_ready_read with None socket and old_socket!"
+ msg = "In _get_socket with None socket and old_socket!"
assert msg in caplog.messages