Skip to content

Commit bceb132

Browse files
committed
tweak special-casing
1 parent f4c4539 commit bceb132

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

irctest/server_tests/chmodes/operator.py

+9-4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def setupNicks(self):
3131
self.getMessages("unrelated")
3232

3333
@cases.mark_specifications("Modern")
34+
@cases.xfailIfSoftware(["irc2"], "broken in irc2")
3435
def testChannelOperatorModeSenderPrivsNeeded(self):
3536
"""Test that +o from a channel member without the necessary privileges
3637
fails as expected."""
@@ -60,10 +61,14 @@ def testChannelOperatorModeTargetDoesNotExist(self):
6061
self.sendLine("chanop", "MODE #chan +o nobody")
6162
messages = self.getMessages("chanop")
6263
# ERR_NOSUCHNICK is typical, Bahamut additionally sends ERR_USERNOTINCHANNEL
63-
self.assertGreaterEqual(len(messages), 1)
64-
self.assertLessEqual(len(messages), 2)
65-
for message in messages:
66-
self.assertIn(message.command, [ERR_NOSUCHNICK, ERR_USERNOTINCHANNEL])
64+
if self.controller.software_name != "Bahamut":
65+
self.assertEqual(len(messages), 1)
66+
self.assertMessageMatch(messages[0], command=ERR_NOSUCHNICK)
67+
else:
68+
self.assertLessEqual(len(messages), 2)
69+
commands = {message.command for message in messages}
70+
self.assertLessEqual({ERR_NOSUCHNICK}, commands)
71+
self.assertLessEqual(commands, {ERR_NOSUCHNICK, ERR_USERNOTINCHANNEL})
6772

6873
@cases.mark_specifications("Modern")
6974
def testChannelOperatorModeChannelDoesNotExist(self):

0 commit comments

Comments
 (0)