Skip to content

Commit

Permalink
fix arrow2 python test
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxiaoying committed Jun 12, 2024
1 parent 0065765 commit c5c7dec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions connectorx-python/connectorx/tests/test_arrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def test_arrow2_type(postgres_url: str) -> None:
"2038-01-18 23:59:59",
None,
],
dtype="datetime64[ns]",
dtype="datetime64[us]",
),
"test_timestamptz": pd.Series(
[
Expand All @@ -101,7 +101,7 @@ def test_arrow2_type(postgres_url: str) -> None:
"2038-01-18 15:59:59+00:00",
None,
],
dtype="datetime64[ns, UTC]",
dtype="datetime64[us, UTC]",
),
"test_int16": pd.Series([0, 1, 2, 3], dtype="int32"),
"test_int64": pd.Series(
Expand Down Expand Up @@ -190,4 +190,4 @@ def test_arrow2_type(postgres_url: str) -> None:

},
)
assert_frame_equal(df, expected, check_names=True)
assert_frame_equal(df, expected, check_names=True)

0 comments on commit c5c7dec

Please sign in to comment.