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 de4de14 commit faf7dc5Copy full SHA for faf7dc5
nibabel/tests/test_scripts.py
@@ -82,7 +82,9 @@ def test_nib_ls_multiple():
82
assert_equal(len(stdout_lines), 4)
83
# they should be indented correctly. Since all files are int type -
84
ln = max(len(f) for f in fnames)
85
- assert_equal([l[ln:ln+2] for l in stdout_lines], [' i']*4)
+ assert_equal([l[ln:ln+2] for l in stdout_lines], [' i']*4,
86
+ msg="Type sub-string didn't start with 'i'. "
87
+ "Full output was: %s" % stdout_lines)
88
# and if disregard type indicator which might vary
89
assert_equal(
90
[l[l.index('['):] for l in stdout_lines],
0 commit comments