Skip to content

Commit c7e07db

Browse files
authored
Merge branch 'main' into dependabot/pip/pylint-2.10.2
2 parents 0a32a62 + 85c4b89 commit c7e07db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meilisearch/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def small_movies():
3535
"""
3636
Runs once per session. Provides the content of small_movies.json.
3737
"""
38-
with open('./datasets/small_movies.json', 'r', encoding=None) as movie_file:
38+
with open('./datasets/small_movies.json', 'r', encoding="utf8") as movie_file:
3939
yield json.loads(movie_file.read())
4040

4141
@fixture(scope='function')

0 commit comments

Comments
 (0)