Skip to content

Commit 6a7ec72

Browse files
committed
Update test_isna in pandas extensions
1 parent 6f1020e commit 6a7ec72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pandas/extension/arkouda_array_extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def test_isna(self):
168168
ak_data = ak.arange(10)
169169
arr = ArkoudaArray(ak_data)
170170
na = arr.isna()
171-
assert ak.all(na == False)
171+
assert (na == False).all()
172172

173173
def test_isna_with_nan(self):
174174
from arkouda.testing import assert_equal

0 commit comments

Comments
 (0)