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 58c90c4 commit 135ce49Copy full SHA for 135ce49
nipype/pipeline/plugins/tests/test_sgelike.py
@@ -31,8 +31,7 @@ def test_crashfile_creation(tmp_path):
31
assert pipe.run(plugin=sgelike_plugin)
32
assert str(e.value) == "Workflow did not execute cleanly. Check log for details"
33
34
- crashfiles = (
35
- list(tmp_path.glob("crash*crasher*.pklz"))
36
- + list(tmp_path.glob("crash*crasher*.txt"))
+ crashfiles = list(tmp_path.glob("crash*crasher*.pklz")) + list(
+ tmp_path.glob("crash*crasher*.txt")
37
)
38
assert len(crashfiles) == 1
0 commit comments