Skip to content

Commit 8964f0a

Browse files
Update test_operators.py
1 parent 65014e7 commit 8964f0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/tests/arrays/categorical/test_operators.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def test_comparison_with_unknown_scalars(self):
186186
np.array([True, True, True]))
187187

188188
def test_comparison_of_ordered_categorical_with_nan_to_scalar(
189-
self, compare_operators_no_eq_ne):
189+
self, compare_operators_no_eq_ne):
190190
# https://github.com/pandas-dev/pandas/issues/26504
191191
# BUG: fix ordered categorical comparison with missing values (#26504 )
192192
# and following comparisons with scalars in categories with missing
@@ -198,8 +198,8 @@ def test_comparison_of_ordered_categorical_with_nan_to_scalar(
198198

199199
def test_comparison_of_ordered_categorical_with_nan_to_listlike(
200200
self, compare_operators_no_eq_ne):
201-
# https://github.com/pandas-dev/pandas/issues/26504
202-
# and following comparisons of missing values in ordered Categorical
201+
# https://github.com/pandas-dev/pandas/issues/26504
202+
# and following comparisons of missing values in ordered Categorical
203203
# with listlike should be evaluated as False
204204

205205
cat = Categorical([1, 2, 3, None], categories=[1, 2, 3], ordered=True)

0 commit comments

Comments
 (0)