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:
Diffstat (limited to 'certbot/plugins/manual_test.py')
-rw-r--r--certbot/plugins/manual_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/certbot/plugins/manual_test.py b/certbot/plugins/manual_test.py
index b566f6340..13e79ce6e 100644
--- a/certbot/plugins/manual_test.py
+++ b/certbot/plugins/manual_test.py
@@ -106,10 +106,10 @@ class AuthenticatorTest(test_util.TempDirTestCase):
achall.validation(achall.account_key) in args[0])
self.assertFalse(kwargs['wrap'])
- @test_util.broken_on_windows
def test_cleanup(self):
self.config.manual_public_ip_logging_ok = True
- self.config.manual_auth_hook = 'echo foo;'
+ self.config.manual_auth_hook = ('{0} -c "import sys; sys.stdout.write(\'foo\')"'
+ .format(sys.executable))
self.config.manual_cleanup_hook = '# cleanup'
self.auth.perform(self.achalls)