From 613250e1b26f4c28354932340830eb0b09e5e3cb Mon Sep 17 00:00:00 2001 From: Ola Bini Date: Fri, 22 Jan 2016 15:03:51 -0500 Subject: [PATCH] Stupid mistake, forgot to change the test --- letsencrypt-nginx/letsencrypt_nginx/tests/parser_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt-nginx/letsencrypt_nginx/tests/parser_test.py b/letsencrypt-nginx/letsencrypt_nginx/tests/parser_test.py index 1190a2326..3fc6a214e 100644 --- a/letsencrypt-nginx/letsencrypt_nginx/tests/parser_test.py +++ b/letsencrypt-nginx/letsencrypt_nginx/tests/parser_test.py @@ -252,7 +252,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"], - [['ssl_session_cache', 'shared:SSL:1m'], + [['ssl_session_cache', 'shared:le_nginx_SSL:1m'], ['ssl_session_timeout', '1440m'], ['ssl_protocols', 'TLSv1 TLSv1.1 TLSv1.2'], ['ssl_prefer_server_ciphers', 'on'],