Skip to content

Commit f58e63f

Browse files
Update tests/test_extension.py
Co-authored-by: Yi-Fan Wang <cmp0xff@users.noreply.github.com>
1 parent 1139133 commit f58e63f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_extension.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ def test_boolean_array() -> None:
7373
check(assert_type(arr_bool & pd.NA, BooleanArray), BooleanArray)
7474
check(assert_type(arr_bool & [True, False], BooleanArray), BooleanArray)
7575
check(assert_type(arr_bool & [np.bool(True), False], BooleanArray), BooleanArray)
76-
# TODO: andas-dev/pandas#63095
77-
# check(assert_type(b & [pd.NA, False]) # not working, maybe worthy reporting
76+
# TODO: pandas-dev/pandas#63095
77+
# check(assert_type(b & [pd.NA, False])
7878
check(assert_type(arr_bool & np.array([True, False]), BooleanArray), BooleanArray)
7979
check(assert_type(arr_bool & arr_int, BooleanArray), BooleanArray)
8080
check(assert_type(arr_bool & arr_bool, BooleanArray), BooleanArray)

0 commit comments

Comments
 (0)