Skip to content

Commit 0d07684

Browse files
authored
Make defaulting more transparent in test suite (#5510)
1 parent fedb85c commit 0d07684

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pymc/tests/test_distributions_random.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,10 +320,10 @@ class BaseTestDistributionRandom(SeededTest):
320320
"""
321321

322322
pymc_dist: Optional[Callable] = None
323-
pymc_dist_params = dict()
323+
pymc_dist_params: Optional[dict] = None
324324
reference_dist: Optional[Callable] = None
325-
reference_dist_params = dict()
326-
expected_rv_op_params = dict()
325+
reference_dist_params: Optional[dict] = None
326+
expected_rv_op_params: Optional[dict] = None
327327
checks_to_run = []
328328
size = 15
329329
decimal = select_by_precision(float64=6, float32=3)

0 commit comments

Comments
 (0)