We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7672f7 commit a2bb285Copy full SHA for a2bb285
pandas/tests/apply/test_frame_apply.py
@@ -742,7 +742,7 @@ def test_apply_category_equalness(val):
742
result = df.a.apply(lambda x: x == val)
743
expected = Series(
744
[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)
+ ) # False since behavior of NaN for categorical dtype has been changed (GH 59966)
746
tm.assert_series_equal(result, expected)
747
748
0 commit comments