Fix Sopel tests; broken by 9b2a6a063c811d0f37bebce79cb89662c66d213e.

This commit is contained in:
2021-02-20 10:42:37 +01:00
parent 3d7a539d06
commit c4a9592156

View File

@ -24,8 +24,8 @@ class SopelController(BaseClientController):
supported_sasl_mechanisms = { supported_sasl_mechanisms = {
'PLAIN', 'PLAIN',
} }
def __init__(self): def __init__(self, test_config):
super().__init__() super().__init__(test_config)
self.filename = next(tempfile._get_candidate_names()) + '.cfg' self.filename = next(tempfile._get_candidate_names()) + '.cfg'
self.proc = None self.proc = None
def kill(self): def kill(self):