mirror of
https://github.com/certbot/certbot.git
synced 2026-06-09 08:42:57 -04:00
Make linter happy
This commit is contained in:
parent
3f22e0d6f2
commit
a90013bc2d
1 changed files with 2 additions and 1 deletions
|
|
@ -67,7 +67,8 @@ class AuthenticatorTest(unittest.TestCase):
|
|||
@mock.patch("letsencrypt.plugins.manual.Authenticator._notify_and_wait")
|
||||
def test_disagree_with_ip_logging(self, mock_notify, mock_interaction):
|
||||
mock_interaction().yesno.return_value = False
|
||||
mock_notify.side_effect = errors.Error("Exception not raised, continued execution even after disagreeing with IP logging")
|
||||
mock_notify.side_effect = errors.Error("Exception not raised, \
|
||||
continued execution even after disagreeing with IP logging")
|
||||
|
||||
self.assertRaises(errors.PluginError, self.auth.perform, self.achalls)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue