From e45a1fb9db71cbad90288b06040f2505451722e2 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sun, 14 Feb 2021 22:22:01 +0100 Subject: [PATCH] limnoria: add support for STS. --- irctest/controllers/limnoria.py | 2 +- irctest/controllers/sopel.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/irctest/controllers/limnoria.py b/irctest/controllers/limnoria.py index dc9c4d3..fdf274d 100644 --- a/irctest/controllers/limnoria.py +++ b/irctest/controllers/limnoria.py @@ -31,7 +31,7 @@ class LimnoriaController(BaseClientController, DirectoryBasedController): supported_sasl_mechanisms = { 'PLAIN', 'ECDSA-NIST256P-CHALLENGE', 'SCRAM-SHA-256', 'EXTERNAL', } - supported_capabilities = set() # Not exhaustive + supported_capabilities = set(['sts']) # Not exhaustive def create_config(self): create_config = super().create_config() diff --git a/irctest/controllers/sopel.py b/irctest/controllers/sopel.py index 554aa3d..a90db10 100644 --- a/irctest/controllers/sopel.py +++ b/irctest/controllers/sopel.py @@ -24,7 +24,7 @@ class SopelController(BaseClientController): supported_sasl_mechanisms = { 'PLAIN', } - supported_caps = set() # Not exhaustive + supported_capabilities = set() # Not exhaustive def __init__(self, test_config): super().__init__(test_config)