Skip to content

Commit b642425

Browse files
committed
return tests
1 parent ba35241 commit b642425

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/unitful.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ end
7979
U, s, V = F
8080
@test map(getval, Matrix(F)) map(getval, Du)
8181
@test svdvals(Du) == s
82-
@test U isa AbstractMatrix{<:Furlong{0}}
83-
@test V isa AbstractMatrix{<:Furlong{0}}
82+
@test U isa AbstractMatrix{<:Union{Real,Complex}}
83+
@test V isa AbstractMatrix{<:Union{Real,Complex}}
8484
@test s isa AbstractVector{<:Furlong{1}}
8585
E = eigen(Du)
8686
vals, vecs = E
8787
@test Matrix(E) == Du
8888
@test vals isa AbstractVector{<:Furlong{1}}
89-
@test vecs isa AbstractMatrix{<:Furlong{0}}
89+
@test vecs isa AbstractMatrix{<:Union{Real,Complex}}
9090
end
9191
end
9292

0 commit comments

Comments
 (0)