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 13cdbff commit 301be08Copy full SHA for 301be08
zarr/tests/test_indexing.py
@@ -1666,7 +1666,7 @@ def test_set_selections_with_fields():
1666
),
1667
(
1668
(slice(0, 10, 1),),
1669
- np.arange(0, 10).reshape((10)),
+ np.arange(0, 10).reshape(10),
1670
[(0, 10, (slice(0, 10, 1),))],
1671
1672
((0,), np.arange(0, 100).reshape((10, 10)), [(0, 10, (slice(0, 1, 1),))]),
@@ -1678,7 +1678,7 @@ def test_set_selections_with_fields():
1678
np.arange(0, 100).reshape((10, 10)),
1679
[(0, 1, (slice(0, 1, 1), slice(0, 1, 1)))],
1680
1681
- ((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),))]),
1682
pytest.param(
1683
(slice(5, 8, 1), slice(2, 4, 1), slice(0, 5, 1)),
1684
np.arange(2, 100002).reshape((10, 1, 10000)),
0 commit comments