Skip to content

Commit d16677c

Browse files
committed
Drop redundant initialization test for DM.
1 parent b82be63 commit d16677c

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

pymc3/tests/test_distributions.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1049,15 +1049,6 @@ def test_multinomial_vec_2d_p(self):
10491049
model.fastlogp({'m': vals}),
10501050
decimal=4)
10511051

1052-
@pytest.mark.parametrize('alpha,n', [
1053-
[[[.25, .25, .25, .25]], [1]],
1054-
])
1055-
def test_dirichlet_multinomial_init(self, alpha, n):
1056-
alpha = np.array(alpha)
1057-
n = np.array(n)
1058-
with Model() as model:
1059-
m = DirichletMultinomial('m', n=n, alpha=alpha)
1060-
10611052
@pytest.mark.parametrize('alpha,n', [
10621053
[[[.25, .25, .25, .25]], [1]],
10631054
[[[.3, .6, .05, .05]], [2]],

0 commit comments

Comments
 (0)