Skip to content

Commit 8349551

Browse files
update test
1 parent 2a48068 commit 8349551

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/strings/test_strings.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,9 @@ def test_isnumeric_unicode(method, expected, any_string_dtype):
274274
and not pa_version_under21p0
275275
):
276276
# known difference in behavior between python and pyarrow unicode handling
277-
# pyarrow 21+ considers ¼ as a digit, while python does not
277+
# pyarrow 21+ considers ¼ and ፸ as a digit, while python does not
278278
expected.iloc[3] = True
279+
expected.iloc[5] = True
279280

280281
result = getattr(ser.str, method)()
281282
tm.assert_series_equal(result, expected)

0 commit comments

Comments
 (0)