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 b8b7c09 commit 6fa9f37Copy full SHA for 6fa9f37
tests/test_indexing.py
@@ -1998,7 +1998,7 @@ def test_iter_chunk_regions():
1998
1999
class TestAsync:
2000
@pytest.mark.parametrize(
2001
- ("indexer", "expected"),
+ ("indexer", "expected"),
2002
[
2003
# int
2004
((0,), np.array([1, 2])),
@@ -2022,7 +2022,7 @@ class TestAsync:
2022
# array of ints
2023
(([0]), np.array([[1, 2]])),
2024
(([1]), np.array([[3, 4]])),
2025
- (([0], [1]), np.array(2)),
+ (([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
# boolean array
@@ -2042,7 +2042,7 @@ async def test_async_oindex(self, store, indexer, expected):
2042
assert_array_equal(result, expected)
2043
2044
2045
- "indexer,expected",
2046
2047
(([0], [0]), np.array(1)),
2048
(([0, 1], [0, 1]), np.array([1, 4])),
0 commit comments