Merged
Changes from 1 commit
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
PrevPrevious commit
Next Next commit
Fix test, outfields
  • Loading branch information
@adelavega
adelavega committedOct 15, 2018
commit 1d267c89068301a629ab3906d1c353ac947d8f3e
Original file line numberDiff line numberDiff line change
Expand Up@@ -633,9 +633,9 @@ def test_bids_infields_outfields(tmpdir):
for outfield in outfields:
assert(outfield in bg._outputs().traits())

# now try without defining outfields, we should get anat and func for free
# now try without defining outfields
bg = nio.BIDSDataGrabber()
for outfield in ['anat', 'func']:
for outfield in ['T1w', 'bold']:
assert outfield in bg._outputs().traits()


Expand Down