Fix Sopel tests; broken by 9b2a6a063c.

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

View File

@ -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):