summaryrefslogtreecommitdiff
path: root/tests
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:42:14 +0200
commit4a2c6c76241d6554e5fa3cfe358cfe16646728a0 (patch)
tree7787d041f2f3c1d6ac784fa456b2c410aad52665 /tests
parent6fe5414f92acfa3ea0420b68f9765b36f6db8d5e (diff)
downloadqutebrowser-4a2c6c76241d6554e5fa3cfe358cfe16646728a0.tar.gz
qutebrowser-4a2c6c76241d6554e5fa3cfe358cfe16646728a0.zip
ipc: Fix socket handling
Speculatively fixes #5344
Diffstat (limited to 'tests')
-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