Skip to content

Commit

Permalink
Remove old test
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Sep 5, 2018
1 parent a2d1e37 commit 80717e3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ end
@test nt == (nt |> rowtable |> columntable)

@test Tables.buildcolumns(nothing, rt) == nt
@test Tables.buildcolumns(nothing, rt, Missing) == (a = Union{Missing, Int64}[1, 2, 3], b = Union{Missing, Float64}[4.0, 5.0, 6.0], c = Union{Missing, String}["7", "8", "9"])
rt = [(a=1, b=4.0, c="7"), (a=2.0, b=missing, c="8"), (a=3, b=6.0, c="9")]
@test isequal(Tables.buildcolumns(nothing, rt), (a = Real[1, 2.0, 3], b = Union{Missing, Float64}[4.0, missing, 6.0], c = ["7", "8", "9"]))
end
Expand Down

0 comments on commit 80717e3

Please sign in to comment.