Skip to content

Commit 7f404d2

Browse files
Update test_operators.py
1 parent 8964f0a commit 7f404d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/arrays/categorical/test_operators.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,8 @@ def test_comparison_of_ordered_categorical_with_nan_to_listlike(
208208

209209
@pytest.mark.parametrize('data,reverse,base', [
210210
(list("abc"), list("cba"), list("bbb")),
211-
([1, 2, 3], [3, 2, 1], [2, 2, 2])])
211+
([1, 2, 3], [3, 2, 1], [2, 2, 2])]
212+
)
212213
def test_comparisons(self, data, reverse, base):
213214
cat_rev = Series(
214215
Categorical(data, categories=reverse, ordered=True))

0 commit comments

Comments
 (0)