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 7fe1ffd commit b0af4a7Copy full SHA for b0af4a7
tests/test_indexing.py
@@ -2015,7 +2015,7 @@ class TestAsync:
2015
((0, ...), np.array([1, 2])),
2016
((..., 0), np.array([1, 3])),
2017
((0, 1, ...), np.array(2)),
2018
- # TODO combined
+ # combined
2019
((0, slice(None)), np.array([1, 2])),
2020
((slice(None), 0), np.array([1, 3])),
2021
((slice(None), slice(None)), np.array([[1, 2], [3, 4]])),
@@ -2025,7 +2025,11 @@ class TestAsync:
2025
(([0], [1]), np.array(2)),
2026
(([0, 1], [0]), np.array([[1], [3]])),
2027
(([0, 1], [0, 1]), np.array([[1, 2], [3, 4]])),
2028
- # TODO boolean array
+ # boolean array
2029
+ (np.array([True, True]), np.array([[1, 2], [3, 4]])),
2030
+ (np.array([True, False]), np.array([[1, 2]])),
2031
+ (np.array([False, True]), np.array([[3, 4]])),
2032
+ (np.array([False, False]), np.empty(shape=(0, 2), dtype="i8")),
2033
],
2034
)
2035
@pytest.mark.asyncio
0 commit comments