Skip to content

Commit 80717e3

Browse files
committed
Remove old test
1 parent a2d1e37 commit 80717e3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

test/runtests.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ end
8686
@test nt == (nt |> rowtable |> columntable)
8787

8888
@test Tables.buildcolumns(nothing, rt) == nt
89-
@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"])
9089
rt = [(a=1, b=4.0, c="7"), (a=2.0, b=missing, c="8"), (a=3, b=6.0, c="9")]
9190
@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"]))
9291
end

0 commit comments

Comments
 (0)