diff --git a/tests/test_module.py b/tests/test_module.py index d55dcf9b..8ccdce1f 100644 --- a/tests/test_module.py +++ b/tests/test_module.py @@ -216,8 +216,8 @@ def test_account_key_domain(self): self.assertIsInstance(result, ValueError) self.assertIn(self.account_key_error, result.args[0]) - def test_contact(self): - """ Make sure optional contact details can be set """ + def test_contact_update(self): + """ Make sure optional contact details can be updated """ # add a logging handler that captures the info log output log_output = StringIO() debug_handler = logging.StreamHandler(log_output) @@ -225,6 +225,14 @@ def test_contact(self): # call acme_tiny with new contact details old_stdout = sys.stdout sys.stdout = StringIO() + result = acme_tiny.main([ + "--account-key", self.KEYS['account_key'].name, + "--csr", self.KEYS['domain_csr'].name, + "--acme-dir", self.tempdir, + "--directory-url", self.DIR_URL, + "--check-port", self.check_port, + "--contact", "mailto:devteam2@gethttpsforfree.com", "mailto:daboss@gethttpsforfree.com", + ]) result = acme_tiny.main([ "--account-key", self.KEYS['account_key'].name, "--csr", self.KEYS['domain_csr'].name,