Skip to content

Commit 2ace3ef

Browse files
committed
fix concatenate test
1 parent bc96348 commit 2ace3ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nibabel/streamlines/tests/test_array_sequence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,4 +328,4 @@ def test_concatenate():
328328
seqs = [seq[:, [i]] for i in range(seq.common_shape[0])]
329329
new_seq = concatenate(seqs, axis=0)
330330
assert_true(len(new_seq), seq.common_shape[0] * len(seq))
331-
assert_array_equal(new_seq._data, seq._data.T.reshape((-1, 1)))
331+
assert_array_equal(new_seq._data, seq._data.T.reshape((-1, 0)))

0 commit comments

Comments
 (0)