From eda43b3cda44d484a46051e312c0312ae7a5f690 Mon Sep 17 00:00:00 2001 From: Daniel Oaks Date: Thu, 2 Nov 2017 00:15:30 +0000 Subject: [PATCH] tls -> starttls, to match feature name better --- irctest/server_tests/test_starttls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/irctest/server_tests/test_starttls.py b/irctest/server_tests/test_starttls.py index ebc3c3e..b16b87c 100644 --- a/irctest/server_tests/test_starttls.py +++ b/irctest/server_tests/test_starttls.py @@ -16,7 +16,7 @@ class StarttlsFailTestCase(cases.BaseServerTestCase): self.sendLine(1, 'CAP LS') capabilities = self.getCapLs(1) if 'tls' not in capabilities: - raise NotImplementedByController('tls') + raise NotImplementedByController('starttls') # TODO: check also without this self.sendLine(1, 'CAP REQ :tls') @@ -42,7 +42,7 @@ class StarttlsTestCase(cases.BaseServerTestCase): self.sendLine(1, 'CAP LS') capabilities = self.getCapLs(1) if 'tls' not in capabilities: - raise NotImplementedByController('tls') + raise NotImplementedByController('starttls') # TODO: check also without this self.sendLine(1, 'CAP REQ :tls')