Skip to content

Commit 6fa9f37

Browse files
committed
linting
1 parent b8b7c09 commit 6fa9f37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_indexing.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1998,7 +1998,7 @@ def test_iter_chunk_regions():
19981998

19991999
class TestAsync:
20002000
@pytest.mark.parametrize(
2001-
("indexer", "expected"),
2001+
("indexer", "expected"),
20022002
[
20032003
# int
20042004
((0,), np.array([1, 2])),
@@ -2022,7 +2022,7 @@ class TestAsync:
20222022
# array of ints
20232023
(([0]), np.array([[1, 2]])),
20242024
(([1]), np.array([[3, 4]])),
2025-
(([0], [1]), np.array(2)),
2025+
(([0], [1]), np.array(2)),
20262026
(([0, 1], [0]), np.array([[1], [3]])),
20272027
(([0, 1], [0, 1]), np.array([[1, 2], [3, 4]])),
20282028
# boolean array
@@ -2042,7 +2042,7 @@ async def test_async_oindex(self, store, indexer, expected):
20422042
assert_array_equal(result, expected)
20432043

20442044
@pytest.mark.parametrize(
2045-
"indexer,expected",
2045+
("indexer", "expected"),
20462046
[
20472047
(([0], [0]), np.array(1)),
20482048
(([0, 1], [0, 1]), np.array([1, 4])),

0 commit comments

Comments
 (0)