Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErica Portnoy <ebportnoy@gmail.com>2022-10-13 03:39:17 +0300
committerErica Portnoy <ebportnoy@gmail.com>2022-10-13 03:39:17 +0300
commite377a30b806d3a935f1f184f78cb8ed22e7acf31 (patch)
tree636cd8e6d848f977e72e7d0b99afe30146f79cec
parentbd81191dc44d01e0ac0845b3d1e6b338d86205e9 (diff)
remove test code
-rw-r--r--certbot/certbot/_internal/main.py1
-rw-r--r--certbot/tests/main_test.py10
2 files changed, 10 insertions, 1 deletions
diff --git a/certbot/certbot/_internal/main.py b/certbot/certbot/_internal/main.py
index 29259f6c3..5d233d9b5 100644
--- a/certbot/certbot/_internal/main.py
+++ b/certbot/certbot/_internal/main.py
@@ -1701,7 +1701,6 @@ def reconfigure(config: configuration.NamespaceConfig,
"be found. Run `certbot certificates` to list available certificates.")
# renews cert as dry run
- import ipdb; ipdb.set_trace()
lineage = _get_and_save_cert(le_client, config, certname=certname, lineage=lineage)
lineage.save_new_config_values(config)
diff --git a/certbot/tests/main_test.py b/certbot/tests/main_test.py
index fad899a02..7df45f95f 100644
--- a/certbot/tests/main_test.py
+++ b/certbot/tests/main_test.py
@@ -528,6 +528,16 @@ class ReconfigureTest(test_util.ConfigTestCase):
def test_no_changes(self):
self._call('reconfigure --cert-name cert1')
+ def test_update_auth(self):
+ pass
+ self._call()
+
+ def test_update_hook(self):
+ pass
+
+ def test_no_domains(self):
+ pass
+
class DeleteIfAppropriateTest(test_util.ConfigTestCase):