From 6181dd07ad6a36f987b77b67a1d628a785876fe2 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 16 Dec 2022 19:09:09 +0100 Subject: [PATCH] Skip failure on RPL_WHOISSPECIAL with Dlk-Services --- irctest/server_tests/whois.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/irctest/server_tests/whois.py b/irctest/server_tests/whois.py index b2a7d29..2853553 100644 --- a/irctest/server_tests/whois.py +++ b/irctest/server_tests/whois.py @@ -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"