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:
-rw-r--r--certbot-nginx/certbot_nginx/tests/configurator_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/certbot-nginx/certbot_nginx/tests/configurator_test.py b/certbot-nginx/certbot_nginx/tests/configurator_test.py
index 6af6aad82..7475df40c 100644
--- a/certbot-nginx/certbot_nginx/tests/configurator_test.py
+++ b/certbot-nginx/certbot_nginx/tests/configurator_test.py
@@ -290,8 +290,8 @@ class NginxConfiguratorTest(util.NginxTest):
]],
parsed_migration_conf[0])
- @mock.patch("certbot_nginx.configurator.nginx_challenges.NginxTlsSni01.perform")
- @mock.patch("certbot_nginx.configurator.nginx_challenges.NginxHttp01.perform")
+ @mock.patch("certbot_nginx.configurator.tls_sni_01.NginxTlsSni01.perform")
+ @mock.patch("certbot_nginx.configurator.http_01.NginxHttp01.perform")
@mock.patch("certbot_nginx.configurator.NginxConfigurator.restart")
@mock.patch("certbot_nginx.configurator.NginxConfigurator.revert_challenge_config")
def test_perform_and_cleanup(self, mock_revert, mock_restart, mock_http_perform,