Skip to content

Commit 1c9d080

Browse files
committed
More coverage of svd and make sure that we actually exercise out own methods
1 parent 89ca5ee commit 1c9d080

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/svd.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,9 @@ using Test, GenericLinearAlgebra, LinearAlgebra, Quaternions, DoubleFloats
236236
@test diag(F.U' * B * F.Vt') F.S rtol = 5e-15
237237
end
238238

239-
@testset "HessenbergQ multiplicatin" begin
240-
A = randn(10, 10)
239+
@testset "Generic HessenbergQ multiplication" begin
240+
A = big.(randn(10, 10))
241241
BF = GenericLinearAlgebra.bidiagonalize!(copy(A))
242-
@test BF.rightQ'*Matrix(I, size(A)...)*BF.rightQ I
242+
@test (BF.rightQ'*Matrix(I, size(A)...))*BF.rightQ I
243243
end
244244
end

0 commit comments

Comments
 (0)