From b895539bdd5011bcbc4794754384df82237fa219 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 12 Nov 2021 22:34:58 +0100 Subject: [PATCH] Update links to WHOIS spec. --- irctest/server_tests/whois.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/irctest/server_tests/whois.py b/irctest/server_tests/whois.py index a4807cf..b948e88 100644 --- a/irctest/server_tests/whois.py +++ b/irctest/server_tests/whois.py @@ -199,7 +199,7 @@ class WhoisTestCase(_WhoisTestMixin, cases.BaseServerTestCase, cases.Optionality def testWhoisNumerics(self, away, oper): """Tests all numerics are in the exhaustive list defined in the Modern spec. - TBD modern PR""" + """ self._testWhoisNumerics(authenticate=False, away=away, oper=oper) @@ -214,7 +214,7 @@ class ServicesWhoisTestCase( """Tests all numerics are in the exhaustive list defined in the Modern spec, on an authenticated user. - TBD modern PR""" + """ self._testWhoisNumerics(oper=oper, authenticate=True, away=False) @cases.mark_specifications("Ergo")