Skip to content

Commit c24566d

Browse files
committed
Minor fixup
1 parent 91a5544 commit c24566d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/lapack.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using Test
2-
using GenericLinearAlgebra
1+
using Test, GenericLinearAlgebra, LinearAlgebra
32
using GenericLinearAlgebra.LAPACK2
43

54
@testset "LAPACK wrappers" begin
@@ -65,7 +64,7 @@ using GenericLinearAlgebra.LAPACK2
6564
@testset "lahqr" begin
6665
T = Array(Tridiagonal(fill(0.1, 99), fill(0.0, 100), fill(40.0, 99)))
6766
_vals = sort(LAPACK2.lahqr!(copy(T))[1])
68-
@test _vals sort(real.(eigvals!(GenericLinearAlgebra.schurfact!(copy(T)))))
67+
@test _vals sort(real.(GenericLinearAlgebra._eigvals!(copy(T))))
6968
# LAPACK's multishift algorithm (the default) seems to be broken
7069
@test !(_vals sort(eigvals(T)))
7170
end

0 commit comments

Comments
 (0)