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.connectClient("foo")
|
||||||
self.getMessages(1)
|
self.getMessages(1)
|
||||||
self.sendLine(1, "QUIT")
|
self.sendLine(1, "QUIT")
|
||||||
try:
|
while True:
|
||||||
commands = {m.command for m in self.getMessages(1)}
|
try:
|
||||||
except ConnectionClosed:
|
new_messages = self.getMessages(1)
|
||||||
assert False, "Connection closed without ERROR."
|
if not new_messages:
|
||||||
|
break
|
||||||
|
commands = {m.command for m in new_messages}
|
||||||
|
except ConnectionClosed:
|
||||||
|
break
|
||||||
self.assertIn(
|
self.assertIn(
|
||||||
"ERROR", commands, fail_msg="Did not receive ERROR as a reply to QUIT."
|
"ERROR", commands, fail_msg="Did not receive ERROR as a reply to QUIT."
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user