From 6ef7577baf8a99539d4c2e3965c4797c6ea5d318 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 6 Dec 2019 11:12:20 -0800 Subject: Specify file encodings --- tests/test_from_fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_from_fixtures.py b/tests/test_from_fixtures.py index c21d395..4b92081 100644 --- a/tests/test_from_fixtures.py +++ b/tests/test_from_fixtures.py @@ -12,7 +12,7 @@ def fixture_file_path(filename): def load_examples(filename): path = fixture_file_path(filename) - with open(path, 'r') as examples_file: + with open(path, 'r', encoding="utf-8") as examples_file: examples = json.load(examples_file) return examples -- cgit v1.2.3