mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
getMessages: Raise an error when forgetting to synchronize=False
Instead of hanging forever. Hopefully there shouldn't be any false positive.
This commit is contained in:
@ -88,6 +88,14 @@ class ClientMock:
|
||||
message = message_parser.parse_message(line)
|
||||
if message.command == "PONG" and token in message.params:
|
||||
got_pong = True
|
||||
elif (
|
||||
synchronize
|
||||
and message.command == "451"
|
||||
and message.params[1] == "PING"
|
||||
):
|
||||
raise ValueError(
|
||||
"Got '451 * PONG'. Did you forget synchronize=False?"
|
||||
)
|
||||
else:
|
||||
if raw:
|
||||
messages.append(line) # type: ignore
|
||||
|
Reference in New Issue
Block a user