From c4a95921567285bfd079d8b98b0860654b5096b5 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 20 Feb 2021 10:42:37 +0100 Subject: [PATCH] Fix Sopel tests; broken by 9b2a6a063c811d0f37bebce79cb89662c66d213e. --- irctest/controllers/sopel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/irctest/controllers/sopel.py b/irctest/controllers/sopel.py index 9e7b158..d3d9ffb 100644 --- a/irctest/controllers/sopel.py +++ b/irctest/controllers/sopel.py @@ -24,8 +24,8 @@ class SopelController(BaseClientController): supported_sasl_mechanisms = { 'PLAIN', } - def __init__(self): - super().__init__() + def __init__(self, test_config): + super().__init__(test_config) self.filename = next(tempfile._get_candidate_names()) + '.cfg' self.proc = None def kill(self):