Skip to content

Commit fbed5b4

Browse files
committed
fix error
1 parent 8901cc9 commit fbed5b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/linalg/diagonal.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ end
361361
Q = qrfact(randn(5, 5)).Q
362362
@test D * Q' == Array(D) * Q'
363363
Q = qrfact(randn(5, 5), Val(true)).Q
364-
@test_throws MethodError mul2!(Q, D)
364+
@test_throws ArgumentError mul2!(Q, D)
365365
end
366366

367367
@testset "block diagonal matrices" begin

0 commit comments

Comments
 (0)