Skip to content

Commit 7d0d1ae

Browse files
committed
[FIX] Windows uncovered a bug in the range of blosc2.arange
1 parent ec00f13 commit 7d0d1ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/ndarray/test_concatenate.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
@pytest.mark.parametrize(
1616
("shape1", "shape2", "dtype", "axis"),
1717
[
18-
([521], [121], "i4", 0),
19-
([521, 121], [121, 121], "i2", 0),
18+
([521], [121], "i2", 0),
19+
([521, 121], [121, 121], "u4", 0),
2020
([521, 121], [521, 121], "i8", 1),
2121
([521, 121, 10], [121, 121, 10], "f4", 0),
2222
([121, 521, 10], [121, 121, 10], "f8", 1),
@@ -40,8 +40,8 @@ def test_concat2(shape1, shape2, dtype, axis):
4040
@pytest.mark.parametrize(
4141
("shape1", "shape2", "shape3", "dtype", "axis"),
4242
[
43-
([521], [121], [21], "i4", 0),
44-
([521, 121], [22, 121], [21, 121], "i2", 0),
43+
([521], [121], [21], "i2", 0),
44+
([521, 121], [22, 121], [21, 121], "u4", 0),
4545
([52, 21], [52, 121], [52, 121], "i8", 1),
4646
([521, 121, 10], [121, 121, 10], [21, 121, 10], "f4", 0),
4747
([121, 521, 10], [121, 121, 10], [121, 21, 10], "f8", 1),

0 commit comments

Comments
 (0)