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 842afd0 commit 7abd259Copy full SHA for 7abd259
pandas/tests/strings/test_strings.py
@@ -136,14 +136,8 @@ def test_repeat():
136
tm.assert_series_equal(rs, xp)
137
138
139
-def test_repeat_with_null(nullable_string_dtype, request):
+def test_repeat_with_null(nullable_string_dtype):
140
# GH: 31632
141
-
142
- if nullable_string_dtype == "arrow_string":
143
- reason = 'Attribute "dtype" are different'
144
- mark = pytest.mark.xfail(reason=reason)
145
- request.node.add_marker(mark)
146
147
ser = Series(["a", None], dtype=nullable_string_dtype)
148
result = ser.str.repeat([3, 4])
149
expected = Series(["aaa", None], dtype=nullable_string_dtype)
0 commit comments