Skip to content

Commit 7abd259

Browse files
simonjayhawkinsyeshsurya
authored andcommitted
[ArrowStringArray] fix test_repeat_with_null (pandas-dev#41001)
1 parent 842afd0 commit 7abd259

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

pandas/tests/strings/test_strings.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,8 @@ def test_repeat():
136136
tm.assert_series_equal(rs, xp)
137137

138138

139-
def test_repeat_with_null(nullable_string_dtype, request):
139+
def test_repeat_with_null(nullable_string_dtype):
140140
# 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-
147141
ser = Series(["a", None], dtype=nullable_string_dtype)
148142
result = ser.str.repeat([3, 4])
149143
expected = Series(["aaa", None], dtype=nullable_string_dtype)

0 commit comments

Comments
 (0)