fix LUSERS tests to work with oragono

This commit is contained in:
Shivaram Lingamneni
2021-02-22 13:46:34 -05:00
committed by Valentin Lorentz
parent c2ed9ca79f
commit 10edb9dd9d
2 changed files with 3 additions and 1 deletions

View File

@ -35,6 +35,8 @@ class ClientMock:
if synchronize:
token = "synchronize{}".format(time.monotonic())
self.sendLine("PING {}".format(token))
else:
token = None
got_pong = False
data = b""
(self.inbuffer, messages) = ([], self.inbuffer)

View File

@ -132,7 +132,7 @@ class LusersUnregisteredTestCase(LusersTestCase):
def _synchronize(self, client_name):
"""Synchronizes using a PING, but accept ERR_NOTREGISTERED as a response."""
self.sendLine(client_name, "PING")
self.sendLine(client_name, "PING PARAM")
for _ in range(1000):
msg = self.getRegistrationMessage(client_name)
if msg.command in (ERR_NOTREGISTERED, "PONG"):