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 ec00f13 commit 7d0d1aeCopy full SHA for 7d0d1ae
tests/ndarray/test_concatenate.py
@@ -15,8 +15,8 @@
15
@pytest.mark.parametrize(
16
("shape1", "shape2", "dtype", "axis"),
17
[
18
- ([521], [121], "i4", 0),
19
- ([521, 121], [121, 121], "i2", 0),
+ ([521], [121], "i2", 0),
+ ([521, 121], [121, 121], "u4", 0),
20
([521, 121], [521, 121], "i8", 1),
21
([521, 121, 10], [121, 121, 10], "f4", 0),
22
([121, 521, 10], [121, 121, 10], "f8", 1),
@@ -40,8 +40,8 @@ def test_concat2(shape1, shape2, dtype, axis):
40
41
("shape1", "shape2", "shape3", "dtype", "axis"),
42
43
- ([521], [121], [21], "i4", 0),
44
- ([521, 121], [22, 121], [21, 121], "i2", 0),
+ ([521], [121], [21], "i2", 0),
+ ([521, 121], [22, 121], [21, 121], "u4", 0),
45
([52, 21], [52, 121], [52, 121], "i8", 1),
46
([521, 121, 10], [121, 121, 10], [21, 121, 10], "f4", 0),
47
([121, 521, 10], [121, 121, 10], [121, 21, 10], "f8", 1),
0 commit comments