Skip to content

Commit d150f17

Browse files
TST: fix class method of test BoolArray (#26957)
1 parent baeb1bf commit d150f17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/tests/extension/arrow/bool.py

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ def copy(self, deep=False):
114114
else:
115115
return type(self)(copy.copy(self._data))
116116

117+
@classmethod
117118
def _concat_same_type(cls, to_concat):
118119
chunks = list(itertools.chain.from_iterable(x._data.chunks
119120
for x in to_concat))

pandas/tests/extension/arrow/test_bool.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ def test_array_type_with_arg(self, data, dtype):
3636

3737

3838
class TestInterface(BaseArrowTests, base.BaseInterfaceTests):
39-
def test_repr(self, data):
40-
raise pytest.skip("TODO")
39+
pass
4140

4241

4342
class TestConstructors(BaseArrowTests, base.BaseConstructorsTests):

0 commit comments

Comments
 (0)