mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 16:12:09 +02:00
Fix line-too-long
This commit is contained in:
@@ -86,9 +86,11 @@ class SimpleHTTPResponseTest(unittest.TestCase):
|
|||||||
self.assertEqual('https', self.msg_https.scheme)
|
self.assertEqual('https', self.msg_https.scheme)
|
||||||
|
|
||||||
def test_uri(self):
|
def test_uri(self):
|
||||||
self.assertEqual('http://example.com/.well-known/acme-challenge/'
|
self.assertEqual(
|
||||||
|
'http://example.com/.well-known/acme-challenge/'
|
||||||
'6tbIMBC5Anhl5bOlWT5ZFA', self.msg_http.uri('example.com'))
|
'6tbIMBC5Anhl5bOlWT5ZFA', self.msg_http.uri('example.com'))
|
||||||
self.assertEqual('https://example.com/.well-known/acme-challenge/'
|
self.assertEqual(
|
||||||
|
'https://example.com/.well-known/acme-challenge/'
|
||||||
'6tbIMBC5Anhl5bOlWT5ZFA', self.msg_https.uri('example.com'))
|
'6tbIMBC5Anhl5bOlWT5ZFA', self.msg_https.uri('example.com'))
|
||||||
|
|
||||||
def test_to_partial_json(self):
|
def test_to_partial_json(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user