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 46d5df9 commit 133fb58Copy full SHA for 133fb58
test/runtests.jl
@@ -173,9 +173,12 @@ q = [3, p1]
173
psum = p+3
174
pprod = p*3
175
pmin = p-3
176
-@test isa(psum, Vector{Poly{Float64}})
177
-@test isa(pprod,Vector{Poly{Float64}})
178
-@test isa(pmin, Vector{Poly{Float64}})
+all(map(eltype, psum) .== Float64)
+all(map(eltype, pprod) .== Float64)
+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}})
182
183
## getindex with ranges #43
184
p1 = Poly([4,5,6])
0 commit comments