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:
authorBrad Warren <bmw@eff.org>2016-07-15 04:15:01 +0300
committerBrad Warren <bmw@eff.org>2016-07-15 04:15:01 +0300
commit9c915b0ae4e42b3c4158b32efe35ae3bdfb1d476 (patch)
tree3daea44d4470d05eca42d408f826e66f4bdd3182 /certbot-nginx/certbot_nginx/tests/parser_test.py
parent6b639679e8df0c860e16f571dc831bc339132623 (diff)
Fix tests
Diffstat (limited to 'certbot-nginx/certbot_nginx/tests/parser_test.py')
-rw-r--r--certbot-nginx/certbot_nginx/tests/parser_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/certbot-nginx/certbot_nginx/tests/parser_test.py b/certbot-nginx/certbot_nginx/tests/parser_test.py
index ddd375d96..d0bc32297 100644
--- a/certbot-nginx/certbot_nginx/tests/parser_test.py
+++ b/certbot-nginx/certbot_nginx/tests/parser_test.py
@@ -251,7 +251,7 @@ class NginxParserTest(util.NginxTest):
def test_ssl_options_should_be_parsed_ssl_directives(self):
nparser = parser.NginxParser(self.config_path, self.ssl_options)
- self.assertEqual(nparser.loc["ssl_options"],
+ self.assertEqual(nginxparser.UnspacedList(nparser.loc["ssl_options"]),
[['ssl_session_cache', 'shared:le_nginx_SSL:1m'],
['ssl_session_timeout', '1440m'],
['ssl_protocols', 'TLSv1 TLSv1.1 TLSv1.2'],