mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 23:32:06 -04:00
Fix port-merge get_chall_msg error
This commit is contained in:
parent
c6ec49e90d
commit
02d5775aff
1 changed files with 2 additions and 1 deletions
|
|
@ -66,7 +66,8 @@ class SatisfyChallengesTest(unittest.TestCase):
|
|||
def test_name1_rectok1(self):
|
||||
dom = "0"
|
||||
challenge = [acme_util.CHALLENGES["recoveryToken"]]
|
||||
msg = acme_util.get_chall_msg(dom, "nonce0", challenge)
|
||||
msg = messages.Challenge(session_id=dom, nonce="nonce0",
|
||||
challenges=challenge, combinations=[])
|
||||
self.handler.add_chall_msg(dom, msg, "dummy_key")
|
||||
|
||||
self.handler._satisfy_challenges() # pylint: disable=protected-access
|
||||
|
|
|
|||
Loading…
Reference in a new issue