From 29e56d442f95db9c2e4f7dce88a526a48dfb429f Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Wed, 24 Jun 2015 20:42:46 +0000 Subject: [PATCH] Fix line-too-long --- acme/challenges_test.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/acme/challenges_test.py b/acme/challenges_test.py index a786065da..4a3867c44 100644 --- a/acme/challenges_test.py +++ b/acme/challenges_test.py @@ -86,10 +86,12 @@ class SimpleHTTPResponseTest(unittest.TestCase): self.assertEqual('https', self.msg_https.scheme) def test_uri(self): - self.assertEqual('http://example.com/.well-known/acme-challenge/' - '6tbIMBC5Anhl5bOlWT5ZFA', self.msg_http.uri('example.com')) - self.assertEqual('https://example.com/.well-known/acme-challenge/' - '6tbIMBC5Anhl5bOlWT5ZFA', self.msg_https.uri('example.com')) + self.assertEqual( + 'http://example.com/.well-known/acme-challenge/' + '6tbIMBC5Anhl5bOlWT5ZFA', self.msg_http.uri('example.com')) + self.assertEqual( + 'https://example.com/.well-known/acme-challenge/' + '6tbIMBC5Anhl5bOlWT5ZFA', self.msg_https.uri('example.com')) def test_to_partial_json(self): self.assertEqual(self.jmsg_http, self.msg_http.to_partial_json())