We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7905ed commit 6ff5a96Copy full SHA for 6ff5a96
heudiconv/tests/test_main.py
@@ -84,7 +84,8 @@ def test_populate_bids_templates(tmpdir):
84
assert "something" not in description_file.read()
85
assert "TODO" in description_file.read()
86
87
- assert load_json(tmpdir / "scans.json") == SCANS_FILE_FIELDS
+ # Explicit str() is needed for py 3.5. TODO: remove when dropping 3.5
88
+ assert load_json(str(tmpdir / "scans.json")) == SCANS_FILE_FIELDS
89
90
91
def test_add_participant_record(tmpdir):
0 commit comments