Skip to content

Commit 7082839

Browse files
committed
update tests for svd propertynames
1 parent 66f6aae commit 7082839

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

stdlib/LinearAlgebra/test/svd.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ aimg = randn(n,n)/2
7878
@test_throws FieldError usv.Z
7979
b = rand(eltya,n)
8080
@test usv\b a\b
81-
@test Base.propertynames(usv) == (:U, :S, :V, :Vt)
81+
@test Base.propertynames(usv) == (:U, :S, :Vt)
82+
@test Base.propertynames(usv, true) == (:V, :U, :S, :Vt)
8283
@test size(usv) == size(a)
8384
if eltya <: BlasFloat
8485
svdz = svd!(Matrix{eltya}(undef,0,0))

0 commit comments

Comments
 (0)