Skip to content

Commit 22040fd

Browse files
committed
Removed test/conversions.jl version check.
1 parent 48ac048 commit 22040fd

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/conversions.jl

+2-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ module TestConversions
1313
df = DataFrame()
1414
df[:A] = 1:5
1515
df[:B] = 1.0:5.0
16-
# Fails on Julia 0.4 since promote_type(Nullable{Int}, Nullable{Float64}) gives Nullable{T}
17-
if VERSION >= v"0.5.0-dev"
18-
@test isa(convert(Array, df), Matrix{Float64})
19-
end
16+
@test isa(convert(Array, df), Matrix{Float64})
17+
2018
@test convert(Array, df) == convert(Array, convert(NullableArray, df))
2119
@test isa(convert(Array{Any}, df), Matrix{Any})
2220
@test isa(convert(Array{Float64}, df), Matrix{Float64})

0 commit comments

Comments
 (0)