Skip to content

Commit ff7c713

Browse files
committed
Fix test
1 parent a2060c6 commit ff7c713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_blockarrays.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ end
8282
@test A isa Matrix
8383

8484
# test that BlockArrays may be created from immutable arrays
85-
B = BlockArray(reshape([1:9;],3,3), [2,1], [2,1])
85+
B = BlockArray(reshape(1:9,3,3), [2,1], [2,1])
8686
@test blocksizes(B) == ([2,1], [2,1])
8787
@test B == reshape([1:9;],3,3)
8888
@test blocks(B) isa Matrix{Matrix{Int}}

0 commit comments

Comments
 (0)