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.
2 parents 1ba9ca1 + 47bb8e8 commit 9897a73Copy full SHA for 9897a73
nipype/interfaces/tests/test_io.py
@@ -686,8 +686,8 @@ 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
690
- i.inputs.out_file = tmp_path / 'out.tsv'
+ i.inputs.in_file = str(testin)
+ i.inputs.out_file = str(tmp_path / 'out.tsv')
691
i.inputs.check_extension = True
692
with pytest.raises(RuntimeError):
693
i.run()
0 commit comments