Skip to content

Commit 318f179

Browse files
authored
Better rename: testin -> test_in
1 parent d54532d commit 318f179

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nipype/interfaces/tests/test_io.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -708,10 +708,10 @@ def _mock_get_ssh_client(self):
708708

709709

710710
def test_ExportFile(tmp_path):
711-
testing = tmp_path / "in.txt"
712-
testing.write_text("test string", encoding='utf-8')
711+
test_in = tmp_path / "in.txt"
712+
test_in.write_text("test string", encoding='utf-8')
713713
i = nio.ExportFile()
714-
i.inputs.in_file = str(testing)
714+
i.inputs.in_file = str(test_in)
715715
i.inputs.out_file = str(tmp_path / "out.tsv")
716716
i.inputs.check_extension = True
717717
with pytest.raises(RuntimeError):

0 commit comments

Comments
 (0)