Skip to content

Commit 0c4140b

Browse files
kshyattandreasnoack
authored andcommitted
Two missing svd tests (#31809)
1 parent 02a3b1f commit 0c4140b

File tree

1 file changed

+2
-1
lines changed
  • stdlib/LinearAlgebra/test

1 file changed

+2
-1
lines changed

stdlib/LinearAlgebra/test/svd.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ a2img = randn(n,n)/2
6363
@test_throws ErrorException usv.Z
6464
b = rand(eltya,n)
6565
@test usv\b a\b
66-
66+
@test Base.propertynames(usv) == (:U, :S, :V, :Vt)
67+
@test size(usv) == size(a)
6768
if eltya <: BlasFloat
6869
svdz = svd!(Matrix{eltya}(undef,0,0))
6970
@test svdz.U Matrix{eltya}(I, 0, 0)

0 commit comments

Comments
 (0)