Skip to content

Commit cf5b384

Browse files
committed
Refactor test_zsn_dims_shape
1 parent 09f0d91 commit cf5b384

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc/tests/distributions/test_multivariate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1016,8 +1016,8 @@ def test_mv_normal_moment(self, mu, cov, size, expected):
10161016
"shape, zerosum_axes, expected",
10171017
[
10181018
((2, 5), None, np.zeros((2, 5))),
1019-
((2, 5, 6), None, np.zeros((2, 5, 6))),
1020-
((2, 5, 6), (0, 1), np.zeros((2, 5, 6))),
1019+
((2, 5, 6), 2, np.zeros((2, 5, 6))),
1020+
((2, 5, 6), 3, np.zeros((2, 5, 6))),
10211021
],
10221022
)
10231023
def test_zerosum_normal_moment(self, shape, zerosum_axes, expected):

0 commit comments

Comments
 (0)