review fixes

This commit is contained in:
Shivaram Lingamneni
2021-03-03 14:37:03 -05:00
parent 74f40ad23d
commit 0f2445c1eb

View File

@ -108,6 +108,7 @@ class MessageTagsTestCase(cases.BaseServerTestCase, cases.OptionalityHelper):
self.assertEqual(alice_msg.tags["msgid"], bob_msg.tags["msgid"]) self.assertEqual(alice_msg.tags["msgid"], bob_msg.tags["msgid"])
@cases.mark_capabilities("message-tags") @cases.mark_capabilities("message-tags")
@cases.mark_specifications("ircdocs")
def testLengthLimits(self): def testLengthLimits(self):
self.connectClient( self.connectClient(
"alice", "alice",
@ -157,7 +158,9 @@ class MessageTagsTestCase(cases.BaseServerTestCase, cases.OptionalityHelper):
# the server may still reject this message on the grounds that the final # the server may still reject this message on the grounds that the final
# parameter is too long to be relayed without truncation, once alice's # parameter is too long to be relayed without truncation, once alice's
# NUH is included. however, if the message was accepted, the tags MUST # NUH is included. however, if the message was accepted, the tags MUST
# be relayed intact, because they are unquestionably valid: # be relayed intact, because they are unquestionably valid. See the
# original context of ERR_INPUTTOOLONG:
# https://defs.ircdocs.horse/defs/numerics.html#err-inputtoolong-417
if echo.command != ERR_INPUTTOOLONG: if echo.command != ERR_INPUTTOOLONG:
relay = self.getMessage("bob") relay = self.getMessage("bob")
self.assertMessageMatch( self.assertMessageMatch(