1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-21 19:01:07 +03:00

assertEqual(False, ...) -> assertFalse

This commit is contained in:
Jakub Warmuz
2015-05-28 08:01:44 +00:00
parent da8f3e19a4
commit f798c117f7

View File

@@ -588,7 +588,7 @@ class RenewableCertTests(unittest.TestCase):
self.assertEqual(mock_da.call_count, 1)
mock_client.obtain_certificate.return_value = (None, None, None)
# This should fail because the renewal itself appears to fail
self.assertEqual(False, renewer.renew(self.test_rc, 1))
self.assertFalse(renewer.renew(self.test_rc, 1))
@mock.patch("letsencrypt.renewer.notify")