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 5737d21 commit 47bb8e8Copy full SHA for 47bb8e8
nipype/interfaces/tests/test_io.py
@@ -686,7 +686,7 @@ def test_ExportFile(tmp_path):
686
testin = tmp_path / 'in.txt'
687
testin.write_text('test string')
688
i = nio.ExportFile()
689
- i.inputs.in_file = testin
+ i.inputs.in_file = str(testin)
690
i.inputs.out_file = str(tmp_path / 'out.tsv')
691
i.inputs.check_extension = True
692
with pytest.raises(RuntimeError):
0 commit comments