Skip to content

Commit 24ac0d7

Browse files
committed
BUG: Fix assert_series_equal for categoricals with nulls and check_category_order=False (#62008)
1 parent d1f872b commit 24ac0d7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/util/test_assert_categorical_equal.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ def test_categorical_equal_object_override(obj):
9090

9191

9292
def test_categorical_equal_with_nans_and_different_order():
93+
# GH#62008
9394
values = ["B", np.nan, "D"]
9495
categories_left = ["B", "D"]
9596
categories_right = categories_left[::-1]

0 commit comments

Comments
 (0)