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 d54532d commit 318f179Copy full SHA for 318f179
nipype/interfaces/tests/test_io.py
@@ -708,10 +708,10 @@ def _mock_get_ssh_client(self):
708
709
710
def test_ExportFile(tmp_path):
711
- testing = tmp_path / "in.txt"
712
- testing.write_text("test string", encoding='utf-8')
+ test_in = tmp_path / "in.txt"
+ test_in.write_text("test string", encoding='utf-8')
713
i = nio.ExportFile()
714
- i.inputs.in_file = str(testing)
+ i.inputs.in_file = str(test_in)
715
i.inputs.out_file = str(tmp_path / "out.tsv")
716
i.inputs.check_extension = True
717
with pytest.raises(RuntimeError):
0 commit comments