@@ -31,6 +31,7 @@ def setupNicks(self):
31
31
self .getMessages ("unrelated" )
32
32
33
33
@cases .mark_specifications ("Modern" )
34
+ @cases .xfailIfSoftware (["irc2" ], "broken in irc2" )
34
35
def testChannelOperatorModeSenderPrivsNeeded (self ):
35
36
"""Test that +o from a channel member without the necessary privileges
36
37
fails as expected."""
@@ -60,10 +61,14 @@ def testChannelOperatorModeTargetDoesNotExist(self):
60
61
self .sendLine ("chanop" , "MODE #chan +o nobody" )
61
62
messages = self .getMessages ("chanop" )
62
63
# 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 })
67
72
68
73
@cases .mark_specifications ("Modern" )
69
74
def testChannelOperatorModeChannelDoesNotExist (self ):
0 commit comments