Skip to content

Commit

Permalink
Fix dtype issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson committed Mar 8, 2024
1 parent 1121eff commit 3d8a73e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_acceptance.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ def test_reader_all_primitive_types():
# timestamp differently. This is likely a bug in arrow but the delta result
# is "more correct".
expected_ddf["timestamp"] = expected_ddf["timestamp"].astype("datetime64[us]")
expected_ddf["timestamp"] = expected_ddf["timestamp"].dt.tz_localize("UTC")
expected_ddf["binary"] = expected_ddf["binary"].astype("string[pyarrow]")
assert_eq(actual_ddf, expected_ddf)


Expand Down

0 comments on commit 3d8a73e

Please sign in to comment.