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 3678488 commit 720bea6Copy full SHA for 720bea6
zarr/tests/test_indexing.py
@@ -1632,7 +1632,7 @@ def test_set_selections_with_fields():
1632
),
1633
(
1634
(slice(0, 10, 1),),
1635
- np.arange(0, 10).reshape((10)),
+ np.arange(0, 10).reshape(10),
1636
[(0, 10, (slice(0, 10, 1),))],
1637
1638
((0,), np.arange(0, 100).reshape((10, 10)), [(0, 10, (slice(0, 1, 1),))]),
@@ -1644,7 +1644,7 @@ def test_set_selections_with_fields():
1644
np.arange(0, 100).reshape((10, 10)),
1645
[(0, 1, (slice(0, 1, 1), slice(0, 1, 1)))],
1646
1647
- ((0,), np.arange(0, 10).reshape((10)), [(0, 1, (slice(0, 1, 1),))]),
+ ((0,), np.arange(0, 10).reshape(10), [(0, 1, (slice(0, 1, 1),))]),
1648
pytest.param(
1649
(slice(5, 8, 1), slice(2, 4, 1), slice(0, 5, 1)),
1650
np.arange(2, 100002).reshape((10, 1, 10000)),
0 commit comments