Skip to content
This repository was archived by the owner on May 7, 2026. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix merge error
  • Loading branch information
sycai committed Feb 25, 2025
commit d7f2dbd3e6453dee10e7d62e10ea68f9e0ceaa59
3 changes: 3 additions & 0 deletions tests/system/small/operations/test_dates.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ def test_date_diff_series_sub_literal(scalars_dfs):
actual_result = (bf_df["date_col"] - literal).to_pandas()

expected_result = (pd_df["date_col"] - literal).astype(dtypes.TIMEDELTA_DTYPE)
pandas.testing.assert_series_equal(
actual_result, expected_result, check_index_type=False
)


def test_date_series_diff_agg(scalars_dfs):
Expand Down