mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
Fix channel deterministic joining s'more
This commit is contained in:
@ -378,7 +378,7 @@ class BaseServerTestCase(_IrcTestCase):
|
||||
# wait until we see them join the channel
|
||||
joined = False
|
||||
while not joined:
|
||||
for msg in self.getMessages(1):
|
||||
for msg in self.getMessages(client):
|
||||
# todo: also respond to cannot join channel numeric
|
||||
if msg.command.upper() == 'JOIN' and 0 < len(msg.params) and msg.params[0].lower() == channel.lower():
|
||||
joined = True
|
||||
|
@ -48,8 +48,8 @@ class MetadataTestCase(cases.BaseServerTestCase, cases.OptionalityHelper):
|
||||
|
||||
self.controller.registerUser(self, 'jilles', 'sesame')
|
||||
self.connectRegisteredClient('bar')
|
||||
self.joinChannel(2, '#chan')
|
||||
|
||||
self.sendLine(2, 'JOIN #chan')
|
||||
m = self.getMessage(1)
|
||||
self.assertMessageEqual(m, command='JOIN',
|
||||
params=['#chan', 'jilles', 'Realname'],
|
||||
|
Reference in New Issue
Block a user