Skip to content

Commit f4edd8d

Browse files
committed
passes match with scipy test in test_distributions.py but fails in test_distributions_random.py
1 parent 164a8f2 commit f4edd8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pymc3/tests/test_distributions_random.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ class TestGeometric(BaseTestCases.BaseTestCase):
509509

510510
class TestHyperGeometric(BaseTestCases.BaseTestCase):
511511
distribution = pm.HyperGeometric
512-
params = {"N": 50, "n": 25, "k": 10}
512+
params = {"N": 50, "k": 25, "n": 10}
513513

514514

515515
class TestMoyal(BaseTestCases.BaseTestCase):
@@ -751,8 +751,8 @@ def ref_rand(size, N, k, n):
751751
pymc3_random_discrete(
752752
pm.HyperGeometric,
753753
{"N": Nat, "k": Nat, "n": Nat},
754-
size=100,
755-
fails=50,
754+
size=500,
755+
fails=100,
756756
ref_rand=ref_rand,
757757
)
758758

0 commit comments

Comments
 (0)