We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba35241 commit b642425Copy full SHA for b642425
test/unitful.jl
@@ -79,14 +79,14 @@ end
79
U, s, V = F
80
@test map(getval, Matrix(F)) ≈ map(getval, Du)
81
@test svdvals(Du) == s
82
- @test U isa AbstractMatrix{<:Furlong{0}}
83
- @test V isa AbstractMatrix{<:Furlong{0}}
+ @test U isa AbstractMatrix{<:Union{Real,Complex}}
+ @test V isa AbstractMatrix{<:Union{Real,Complex}}
84
@test s isa AbstractVector{<:Furlong{1}}
85
E = eigen(Du)
86
vals, vecs = E
87
@test Matrix(E) == Du
88
@test vals isa AbstractVector{<:Furlong{1}}
89
- @test vecs isa AbstractMatrix{<:Furlong{0}}
+ @test vecs isa AbstractMatrix{<:Union{Real,Complex}}
90
end
91
92
0 commit comments