Skip to content

Commit

Permalink
fix encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
polyanskiy committed Dec 3, 2024
1 parent d196101 commit d9cbe76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ def custom_name_func(testcase_func, param_num, param):
class ParseTest(unittest.TestCase):
@parameterized.expand(PATHS, name_func=custom_name_func)
def test_can_parse(self, path):
with open(path, "r") as stream:
with open(path, "r", encoding="utf-8") as stream:
yaml.safe_load(stream)

0 comments on commit d9cbe76

Please sign in to comment.