Skip to content

Commit 1d8d5dc

Browse files
Jason MokJason Mok
Jason Mok
authored and
Jason Mok
committed
Fix inconsistent pandas namespace usage
1 parent 1c578c3 commit 1d8d5dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/reshape/test_cut.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -807,8 +807,8 @@ def test_datetime_cut_notna():
807807
result = pd.cut(datetime_array, bins=bins)
808808

809809
expected_intervals = IntervalIndex.from_arrays(
810-
[pd.Timestamp("2023-09-16"), pd.Timestamp("2023-09-26")],
811-
[pd.Timestamp("2023-09-26"), pd.Timestamp("2023-10-06")],
810+
[Timestamp("2023-09-16"), Timestamp("2023-09-26")],
811+
[Timestamp("2023-09-26"), Timestamp("2023-10-06")],
812812
closed="right",
813813
)
814814

0 commit comments

Comments
 (0)