Skip to content

Commit a2bb285

Browse files
committed
fix pytest linting
1 parent f7672f7 commit a2bb285

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/apply/test_frame_apply.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ def test_apply_category_equalness(val):
742742
result = df.a.apply(lambda x: x == val)
743743
expected = Series(
744744
[False if pd.isnull(x) else x == val for x in df_values], name="a"
745-
) # False since behavior of NaN for categorical dtype has been changed (GH 59966)
745+
) # False since behavior of NaN for categorical dtype has been changed (GH 59966)
746746
tm.assert_series_equal(result, expected)
747747

748748

0 commit comments

Comments
 (0)