Skip to content

Commit 511fb0f

Browse files
committed
Add comment about broken test
1 parent 17fdbfe commit 511fb0f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/matrix_multiply.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
m = @SMatrix [1 2; 3 4]
5959
bm = @SMatrix [m m; m m]
6060
bv = @SVector [v,v]
61+
# Broken only because output turns into a normal array:
6162
@test_broken (bv'*bm)'::SVector{2,SVector{2,Int}} == @SVector [[14,20],[14,20]]
6263

6364
# Outer product
@@ -97,7 +98,7 @@
9798
m = @MArray [1 2; 3 4]
9899
n = @MArray [2 3; 4 5]
99100
@test (m*n) == @SMatrix [10 13; 22 29]
100-
101+
101102
# block matrices
102103
bm = @SMatrix [m m; m m]
103104
bm2 = @SMatrix [14 20; 30 44]

0 commit comments

Comments
 (0)