Skip to content

Commit 17fdbfe

Browse files
committed
fix block matrix test
1 parent 9534ee1 commit 17fdbfe

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/matrix_multiply.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
@test @inferred(v*m) === @SMatrix [1 2 3 4; 2 4 6 8]
5656

5757
# block matrices
58+
m = @SMatrix [1 2; 3 4]
5859
bm = @SMatrix [m m; m m]
5960
bv = @SVector [v,v]
6061
@test_broken (bv'*bm)'::SVector{2,SVector{2,Int}} == @SVector [[14,20],[14,20]]

0 commit comments

Comments
 (0)