mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
py3fix
This commit is contained in:
parent
0ed3213989
commit
e2d8630f5e
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ class OCSPTest(unittest.TestCase):
|
|||
c = "confusion"
|
||||
mock_run.side_effect = errors.SubprocessError(c)
|
||||
self.assertEqual(self.checker.determine_ocsp_server("beep"), (None, None))
|
||||
self.assertTrue(c in mock_debug.call_args[0][1])
|
||||
self.assertTrue(c in repr(mock_debug.call_args[0][1]))
|
||||
|
||||
@mock.patch('certbot.ocsp.logger')
|
||||
@mock.patch('certbot.util.run_script')
|
||||
|
|
|
|||
Loading…
Reference in a new issue