Skip to content

Commit

Permalink
Remove test (accidental commit)
Browse files Browse the repository at this point in the history
  • Loading branch information
billylanchantin authored Nov 28, 2024
1 parent 38dc33d commit 5ef206b
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions test/explorer/data_frame_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4830,26 +4830,4 @@ defmodule Explorer.DataFrameTest do
end
end
end

test "x" do
dtypes = [
{"col_d", {:struct, [{"w", {:s, 64}}, {"q", {:naive_datetime, :microsecond}}]}},
{"col_j", {:list, {:list, {:f, 32}}}}
]

rows = [
[
{"col_d", %{"q" => ~N[2901-09-24 22:53:38.923913], "w" => 3_470_490_443_432_017_527}},
{"col_j", [[1.1, 2.2]]}
],
[{"col_d", nil}, {"col_j", [[3.3]]}],
[
{"col_d", %{"q" => nil, "w" => 3_594_148_901_191_965_499}},
{"col_j", [nil, [nil], []]}
]
]

df = DF.new(rows, dtypes: dtypes)
DF.print(df)
end
end

0 comments on commit 5ef206b

Please sign in to comment.