Skip to content

Commit c3615bb

Browse files
committed
Use smaller values for probit & cutpoint testing
1 parent 53c2a0d commit c3615bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/tests/test_distributions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1543,7 +1543,7 @@ def test_orderedprobit(self, n):
15431543
self.pymc3_matches_scipy(
15441544
OrderedProbit,
15451545
Domain(range(n), "int64"),
1546-
{"eta": R, "cutpoints": SortedVector(n - 1)},
1546+
{"eta": Runif, "cutpoints": UnitSortedVector(n - 1)},
15471547
lambda value, eta, cutpoints: orderedprobit_logpdf(value, eta, cutpoints),
15481548
)
15491549

0 commit comments

Comments
 (0)