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 0d5fa8a commit 046c6e6Copy full SHA for 046c6e6
test/runtests.jl
@@ -173,12 +173,9 @@ q = [3, p1]
173
psum = p+3
174
pprod = p*3
175
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}})
+@test isa(psum, Vector{Poly{Float64}})
+@test isa(pprod,Vector{Poly{Float64}})
+@test isa(pmin, Vector{Poly{Float64}})
182
183
## getindex with ranges #43
184
p1 = Poly([4,5,6])
0 commit comments