mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
Trivial code clean-up
This commit is contained in:
parent
20df5507ae
commit
2aac24c982
1 changed files with 1 additions and 2 deletions
|
|
@ -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])
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue