Skip to content

Commit a6851a1

Browse files
committed
Revert "BF(TST): workaround for python 3.5"
This reverts commit 6ff5a96.
1 parent 4ec5d43 commit a6851a1

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)