We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abe592c commit 988984fCopy full SHA for 988984f
tests/engine_tests/test_engine.py
@@ -42,7 +42,7 @@ def _extract_test_cases(
42
:param file_path: the path to the json data file
43
:return: a list of tuples containing the environment, identity and api response
44
"""
45
- test_data = json.load(file_path.open("rb"))
+ test_data = json.loads(file_path.read_text())
46
47
environment_document = test_data["environment"]
48
0 commit comments