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:
authorcumul0529 <gg6123@naver.com>2020-02-23 20:48:21 +0300
committercumul0529 <gg6123@naver.com>2020-02-23 20:49:08 +0300
commit2aac24c9829d565d6ba6aa42ad9fc7e5ba4926b3 (patch)
treee70d7612321e25b58d349f53c8bdb49cc801d95b
parent20df5507ae9a17df35f9c1152a34d0c52ba304f6 (diff)
Trivial code clean-up
-rw-r--r--certbot-nginx/tests/parser_test.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/certbot-nginx/tests/parser_test.py b/certbot-nginx/tests/parser_test.py
index 89bcf689a..1f9e3c996 100644
--- a/certbot-nginx/tests/parser_test.py
+++ b/certbot-nginx/tests/parser_test.py
@@ -484,9 +484,8 @@ class NginxParserTest(util.NginxTest):
def test_valid_unicode_characters(self):
nparser = parser.NginxParser(self.config_path)
- # pylint: disable=protected-access
path = nparser.abs_path('valid_unicode_comments.conf')
- parsed = nparser._parse_files(path)
+ parsed = nparser._parse_files(path) # pylint: disable=protected-access
self.assertEqual(['server'], parsed[0][2][0])
self.assertEqual(['listen', '80'], parsed[0][2][1][3])