mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
testQuitErrors: Make it slightly less flaky with solanum?
This commit is contained in:
@ -88,10 +88,14 @@ class ConnectionRegistrationTestCase(cases.BaseServerTestCase):
|
||||
self.connectClient("foo")
|
||||
self.getMessages(1)
|
||||
self.sendLine(1, "QUIT")
|
||||
while True:
|
||||
try:
|
||||
commands = {m.command for m in self.getMessages(1)}
|
||||
new_messages = self.getMessages(1)
|
||||
if not new_messages:
|
||||
break
|
||||
commands = {m.command for m in new_messages}
|
||||
except ConnectionClosed:
|
||||
assert False, "Connection closed without ERROR."
|
||||
break
|
||||
self.assertIn(
|
||||
"ERROR", commands, fail_msg="Did not receive ERROR as a reply to QUIT."
|
||||
)
|
||||
|
Reference in New Issue
Block a user