Skip to content

Commit e4da1ca

Browse files
committed
update error messages in tests
1 parent 3bbb8b1 commit e4da1ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/gen_eig.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ using LinearAlgebra: Diagonal
4242
A = randn(rng, T, m, m)
4343
B = randn(rng, T, m, m)
4444
@test_throws ArgumentError("LAPACK_Expert is not supported for ggev") gen_eig_full(A, B; alg = LAPACK_Expert())
45-
@test_throws ArgumentError("LAPACK_Simple (ggev) does not accept any keyword arguments") gen_eig_full(A, B; alg = LAPACK_Simple(bad = "sad"))
45+
@test_throws ArgumentError("invalid keyword arguments for LAPACK_Simple") gen_eig_full(A, B; alg = LAPACK_Simple(bad = "sad"))
4646
@test_throws ArgumentError("LAPACK_Expert is not supported for ggev") gen_eig_vals(A, B; alg = LAPACK_Expert())
47-
@test_throws ArgumentError("LAPACK_Simple (ggev) does not accept any keyword arguments") gen_eig_vals(A, B; alg = LAPACK_Simple(bad = "sad"))
47+
@test_throws ArgumentError("invalid keyword arguments for LAPACK_Simple") gen_eig_vals(A, B; alg = LAPACK_Simple(bad = "sad"))
4848

4949
# a tuple of the input types is passed to `default_algorithm`
5050
@test_throws MethodError MatrixAlgebraKit.default_algorithm(gen_eig_full, A, B)

0 commit comments

Comments
 (0)