Skip to content

Commit e30542d

Browse files
committed
skip more np.char functions that are ufuncs now
1 parent 9011bf9 commit e30542d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

stringdtype/tests/test_char.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ def unicode_array():
2727
"capitalize",
2828
"expandtabs",
2929
"isalnum",
30-
# "isalpha", (10-23-23) skipped temporarily since it is now a ufunc
31-
"isdigit",
30+
# "isalpha",
31+
# "isdigit",
3232
"islower",
33-
"isspace",
33+
# "isspace",
3434
"istitle",
3535
"isupper",
3636
"lower",
3737
"splitlines",
3838
"swapcase",
3939
"title",
4040
"upper",
41-
"isnumeric",
42-
"isdecimal",
41+
# "isnumeric",
42+
# "isdecimal",
4343
]
4444

4545

@@ -61,19 +61,19 @@ def test_unary(string_array, unicode_array, function_name):
6161
("center", (None, 25)),
6262
("count", (None, "A")),
6363
("encode", (None, "UTF-8")),
64-
("endswith", (None, "lo")),
65-
# ("find", (None, "A")), # 11-6-2023 skipped temporarily
64+
# ("endswith", (None, "lo")),
65+
# ("find", (None, "A")),
6666
("index", (None, "e")),
6767
("join", ("-", None)),
6868
("ljust", (None, 12)),
6969
("partition", (None, "A")),
7070
("replace", (None, "A", "B")),
71-
# ("rfind", (None, "A")), # 11-6-2023 skipped temporarily
71+
# ("rfind", (None, "A")),
7272
("rindex", (None, "e")),
7373
("rjust", (None, 12)),
7474
("rpartition", (None, "A")),
7575
("split", (None, "A")),
76-
("startswith", (None, "A")),
76+
# ("startswith", (None, "A")),
7777
("zfill", (None, 12)),
7878
]
7979

0 commit comments

Comments
 (0)