Skip to content

Commit 39588e0

Browse files
committed
fix dimensionmismatch test
1 parent 24120f1 commit 39588e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/matmul.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ end
539539

540540
A5x5, A6x5 = Matrix{Float64}.(undef, ((5, 5), (6, 5)))
541541
@test_throws DimensionMismatch LinearAlgebra.syrk_wrapper!(A5x5, 'N', A6x5)
542-
@test_throws DimensionMismatch LinearAlgebra.herk_wrapper!(A5x5, 'N', A6x5)
542+
@test_throws DimensionMismatch LinearAlgebra.herk_wrapper!(complex(A5x5), 'N', complex(A6x5))
543543
end
544544

545545
@testset "5-arg syrk! & herk!" begin

0 commit comments

Comments
 (0)