Skip to content

Commit 3f45c66

Browse files
committed
fix: incompatible broadcast test case
1 parent a2f50c3 commit 3f45c66

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dpnp/tests/test_manipulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2081,7 +2081,7 @@ def test_broadcast_incompatible_shapes(self):
20812081

20822082
def test_broadcast_incompatible_shapes_2d(self):
20832083
# Test incompatible 2D shapes
2084-
a = dpnp.array([[1, 2, 3]])
2084+
a = dpnp.array([[1, 2, 3], [4, 5, 6]])
20852085
b = dpnp.array([[1], [2], [3], [4]])
20862086

20872087
with pytest.raises(ValueError):

0 commit comments

Comments
 (0)