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 84f0e26 commit 08bfe64Copy full SHA for 08bfe64
pandas/tests/arrays/test_mask.py
@@ -4,7 +4,6 @@
4
from pandas.util import testing as tm
5
6
from pandas.core.arrays._mask import NumpyBoolArray
7
-from pandas.core.arrays.bool import ArrowBoolArray
8
9
10
@pytest.fixture
@@ -15,6 +14,7 @@ def numpy_data():
15
14
16
def arrow_data():
17
pytest.importorskip('pyarrow', minversion="0.10.0")
+ from pandas.core.arrays.bool import ArrowBoolArray
18
return ArrowBoolArray([1, 0, 1])
19
20
@@ -24,6 +24,7 @@ def mask_type(request):
24
return NumpyBoolArray
25
elif request.param == 'arrow':
26
27
28
return ArrowBoolArray
29
30
0 commit comments