Skip to content

Commit

Permalink
update tests for svd propertynames
Browse files Browse the repository at this point in the history
  • Loading branch information
arhik committed Jul 25, 2024
1 parent 66f6aae commit 7082839
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stdlib/LinearAlgebra/test/svd.jl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ aimg = randn(n,n)/2
@test_throws FieldError usv.Z
b = rand(eltya,n)
@test usv\b a\b
@test Base.propertynames(usv) == (:U, :S, :V, :Vt)
@test Base.propertynames(usv) == (:U, :S, :Vt)
@test Base.propertynames(usv, true) == (:V, :U, :S, :Vt)
@test size(usv) == size(a)
if eltya <: BlasFloat
svdz = svd!(Matrix{eltya}(undef,0,0))
Expand Down

0 comments on commit 7082839

Please sign in to comment.