Skip to content

Commit 9551fa1

Browse files
committed
Fix test_dot_errors
1 parent b326b3d commit 9551fa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/xtensor/test_math.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def test_dot_errors():
307307

308308
# Symbolic dimension size mismatches
309309
x = xtensor("x", dims=("a", "b"), shape=(2, None))
310-
y = xtensor("y", dims=("b", "c"), shape=(None, 3))
310+
y = xtensor("y", dims=("b", "c"), shape=(None, 5))
311311
z = x.dot(y)
312312
fn = xr_function([x, y], z)
313313
x_test = DataArray(np.ones((2, 3)), dims=("a", "b"))

0 commit comments

Comments
 (0)