Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Strecansky <bstrecansky@rsglab.com>2017-08-07 15:55:43 +0300
committerBob Strecansky <bstrecansky@rsglab.com>2017-08-07 15:55:43 +0300
commit2e7ec00e8c5a605c272a72a702f34803463bc5df (patch)
treec52814b953868321c70e0e0346477457aa7457cb
parentf7dedae388ca338c3f218e680c4774109540f719 (diff)
[#4535] - Unwrap max retries exceeded errors
-rw-r--r--acme/acme/client_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/acme/acme/client_test.py b/acme/acme/client_test.py
index 813898d20..6509f951b 100644
--- a/acme/acme/client_test.py
+++ b/acme/acme/client_test.py
@@ -634,7 +634,7 @@ class ClientNetworkTest(unittest.TestCase):
# Requests Library Exceptions
except requests.exceptions.ConnectionError as z: #pragma: no cover
- self.assertEqual("('Connection aborted.', error(111, 'Connection Refused'))", str(z))
+ self.assertEqual("('Connection aborted.', error(111, 'Connection refused'))", str(z))
class ClientNetworkWithMockedResponseTest(unittest.TestCase):
"""Tests for acme.client.ClientNetwork which mock out response."""