Skip to content

Commit 046c6e6

Browse files
committed
restore test for elementwise operations
1 parent 0d5fa8a commit 046c6e6

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

test/runtests.jl

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,9 @@ q = [3, p1]
173173
psum = p+3
174174
pprod = p*3
175175
pmin = p-3
176-
all(map(eltype, psum) .== Float64)
177-
all(map(eltype, pprod) .== Float64)
178-
all(map(eltype, pmin) .== Float64)
179-
#@test isa(psum, Vector{Poly{Float64}}) ## work around #57 until #17389 gets into v0.5
180-
#@test isa(pprod,Vector{Poly{Float64}})
181-
#@test isa(pmin, Vector{Poly{Float64}})
176+
@test isa(psum, Vector{Poly{Float64}})
177+
@test isa(pprod,Vector{Poly{Float64}})
178+
@test isa(pmin, Vector{Poly{Float64}})
182179

183180
## getindex with ranges #43
184181
p1 = Poly([4,5,6])

0 commit comments

Comments
 (0)