Skip to content

Commit 2595160

Browse files
remove suggested test cases
Co-authored-by: Ricardo Vieira <[email protected]>
1 parent c9ec32f commit 2595160

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

pymc/tests/test_distributions_moments.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -757,10 +757,8 @@ def test_categorical_moment(p, size, expected):
757757
[
758758
(np.ones(1), np.identity(1), None, np.ones(1)),
759759
(np.ones(3), np.identity(3), None, np.ones(3)),
760-
(np.ones(2), np.identity(2), 4, np.ones((4, 2))),
761760
(np.ones((2, 2)), np.identity(2), None, np.ones((2, 2))),
762761
(np.array([1, 0, 3.0]), np.identity(3), None, np.array([1, 0, 3.0])),
763-
(np.array([1, 0, 3.0]), np.identity(3), 4, np.full((4, 3), [1, 0, 3.0])),
764762
(np.array([1, 0, 3.0]), np.identity(3), (4, 2), np.full((4, 2, 3), [1, 0, 3.0])),
765763
(
766764
np.array([1, 3.0]),
@@ -774,12 +772,6 @@ def test_categorical_moment(p, size, expected):
774772
(4, 5),
775773
np.full((4, 5, 2), [1, 3.0]),
776774
),
777-
(
778-
np.array([1, 3, 0.0]),
779-
np.array([[1.0, 0.5, 0.1], [0.5, 2, 0.5], [0.1, 0.5, 5]]),
780-
(4, 5),
781-
np.full((4, 5, 3), [1, 3, 0.0]),
782-
),
783775
(
784776
np.array([[3.0, 5], [1, 4]]),
785777
np.identity(2),

0 commit comments

Comments
 (0)