Skip to content

Commit bdb618f

Browse files
authored
Merge pull request #527 from dbic/rm-workaround
Revert "BF(TST): workaround for python 3.5"
2 parents 4ec5d43 + a6851a1 commit bdb618f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

heudiconv/tests/test_main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,7 @@ def test_populate_bids_templates(tmpdir):
8484
assert "something" not in description_file.read()
8585
assert "TODO" in description_file.read()
8686

87-
# 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
87+
assert load_json(tmpdir / "scans.json") == SCANS_FILE_FIELDS
8988

9089

9190
def test_add_participant_record(tmpdir):

0 commit comments

Comments
 (0)