mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
Skip failure on RPL_WHOISSPECIAL with Dlk-Services
This commit is contained in:
@ -99,6 +99,12 @@ class _WhoisTestMixin(cases.BaseServerTestCase):
|
||||
],
|
||||
)
|
||||
elif m.command == RPL_WHOISSPECIAL:
|
||||
services_controller = self.controller.services_controller
|
||||
if (
|
||||
services_controller is not None
|
||||
and services_controller.software_name == "Dlk-Services"
|
||||
):
|
||||
continue
|
||||
# Technically allowed, but it's a bad style to use this without
|
||||
# explicit configuration by the operators.
|
||||
assert False, "RPL_WHOISSPECIAL in use with default configuration"
|
||||
|
Reference in New Issue
Block a user