mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
acme-spec#93 solved, ref boulder#130, acme-spec#110
This commit is contained in:
parent
0cb012a9fd
commit
9b5ea88abd
2 changed files with 1 additions and 2 deletions
|
|
@ -150,7 +150,6 @@ class Network(object):
|
|||
response.links['terms-of-service']['url']
|
||||
if 'terms-of-service' in response.links else terms_of_service)
|
||||
|
||||
# TODO: Consider removing this check based on spec clarifications #93
|
||||
if new_authzr_uri is None:
|
||||
try:
|
||||
new_authzr_uri = response.links['next']['url']
|
||||
|
|
|
|||
|
|
@ -285,10 +285,10 @@ class NetworkTest(unittest.TestCase):
|
|||
self.challr.body.update(uri='foo'), chall_response)
|
||||
|
||||
def test_answer_challenge_missing_next(self):
|
||||
# TODO: Change once acme-spec #93 is resolved/boulder issue
|
||||
self._mock_post_get()
|
||||
self.assertTrue(self.net.answer_challenge(
|
||||
self.challr.body, challenges.DNSResponse()) is None)
|
||||
# TODO: boulder#130, acme-spec#110
|
||||
# self.assertRaises(errors.NetworkError, self.net.answer_challenge,
|
||||
# self.challr.body, challenges.DNSResponse())
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue