Commit d12a420a authored by Florent Xicluna's avatar Florent Xicluna

Fix encoding for test case added in r84967.

parent 42d54450
......@@ -337,7 +337,7 @@ boolean {0[0]} NO
error = configparser.MissingSectionHeaderError
expected = (tricky, 1,
' # INI with as many tricky parts as possible\n')
with open(tricky) as f:
with open(tricky, encoding='utf-8') as f:
e = self.parse_error(cf, error, f)
self.assertEqual(e.args, expected)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment