Fix typos

This commit is contained in:
2025-03-29 17:49:31 +01:00
parent 75bda04241
commit 990c0efe31

View File

@ -113,8 +113,9 @@ class BouncerTestCase(cases.BaseServerTestCase):
@cases.mark_specifications("Ergo")
def testChannelMessageFromSelf(self):
"""Test that all clients attached to a session get messages sent by someone else
to a channel"""
"""Test that all clients attached to a session get messages sent by an other client
(TODO: check when the initial sender has echo-message too)"""
self._connectClient3()
self._connectClient4()
@ -123,7 +124,7 @@ class BouncerTestCase(cases.BaseServerTestCase):
msg for msg in self.getMessages(2) if msg.command == "PRIVMSG"
]
messagesforone = [
msg for msg in self.getMessages(2) if msg.command == "PRIVMSG"
msg for msg in self.getMessages(1) if msg.command == "PRIVMSG"
]
messagesforthree = [
msg for msg in self.getMessages(3) if msg.command == "PRIVMSG"