Fix testNickReleaseUnregistered on inspircd

PING is not valid before registration.
This commit is contained in:
Valentin Lorentz 2021-02-27 10:33:57 +01:00
parent b405a94c34
commit 5ab2fa709e

View File

@ -171,6 +171,5 @@ class RegressionsTestCase(cases.BaseServerTestCase):
self.addClient(2)
self.sendLine(2, "NICK alice")
self.sendLine(2, "USER u s e r")
replies = set(msg.command for msg in self.getMessages(2))
self.assertNotIn(ERR_NICKNAMEINUSE, replies)
self.assertIn(RPL_WELCOME, replies)
reply = self.getRegistrationMessage(2)
self.assertMessageEqual(reply, command=RPL_WELCOME)