From 9e9c4dfcf5c574ad66864bec5f40f80834501f91 Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Wed, 27 Jul 2016 16:54:17 -0700 Subject: [PATCH] fix test --- certbot-nginx/certbot_nginx/tests/configurator_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-nginx/certbot_nginx/tests/configurator_test.py b/certbot-nginx/certbot_nginx/tests/configurator_test.py index fa130fc4e..fede3bc08 100644 --- a/certbot-nginx/certbot_nginx/tests/configurator_test.py +++ b/certbot-nginx/certbot_nginx/tests/configurator_test.py @@ -415,7 +415,7 @@ class NginxConfiguratorTest(util.NginxTest): def test_redirect_enhance(self): expected = [ - ['if', '($scheme != "https")'], + ['if', '($scheme != "https") '], [['return', '301 https://$host$request_uri']] ]