Skip to content

Commit 9897a73

Browse files
committed
Merge remote-tracking branch 'stilley2/feature/Rename_copy_trait' into feature/Rename_copy_trait
2 parents 1ba9ca1 + 47bb8e8 commit 9897a73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/tests/test_io.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -686,8 +686,8 @@ def test_ExportFile(tmp_path):
686686
testin = tmp_path / 'in.txt'
687687
testin.write_text('test string')
688688
i = nio.ExportFile()
689-
i.inputs.in_file = testin
690-
i.inputs.out_file = tmp_path / 'out.tsv'
689+
i.inputs.in_file = str(testin)
690+
i.inputs.out_file = str(tmp_path / 'out.tsv')
691691
i.inputs.check_extension = True
692692
with pytest.raises(RuntimeError):
693693
i.run()

0 commit comments

Comments
 (0)