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 7a3c7f6 commit 1c26d1dCopy full SHA for 1c26d1d
nipype/interfaces/tests/test_io.py
@@ -694,7 +694,7 @@ def test_ExportFile(tmp_path):
694
i.inputs.check_extension = False
695
i.run()
696
assert (tmp_path / 'out.tsv').read_text() == 'test string'
697
- i.inputs.out_file = tmp_path / 'out.txt'
+ i.inputs.out_file = str(tmp_path / 'out.txt')
698
i.inputs.check_extension = True
699
700
assert (tmp_path / 'out.txt').read_text() == 'test string'
0 commit comments