From f54e5dcb13a270b2b34e63fb1f02abec8543c1a1 Mon Sep 17 00:00:00 2001 From: Ravin Kumar Date: Mon, 21 Feb 2022 10:47:54 -0800 Subject: [PATCH] Fix aesara name --- pymc/tests/test_distributions_random.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pymc/tests/test_distributions_random.py b/pymc/tests/test_distributions_random.py index e5ee4e4d58..51207ae0c8 100644 --- a/pymc/tests/test_distributions_random.py +++ b/pymc/tests/test_distributions_random.py @@ -360,10 +360,10 @@ def check_pymc_draws_match_reference(self): ) def check_pymc_params_match_rv_op(self): - aesera_dist_inputs = self.pymc_rv.get_parents()[0].inputs[3:] - assert len(self.expected_rv_op_params) == len(aesera_dist_inputs) + aesara_dist_inputs = self.pymc_rv.get_parents()[0].inputs[3:] + assert len(self.expected_rv_op_params) == len(aesara_dist_inputs) for (expected_name, expected_value), actual_variable in zip( - self.expected_rv_op_params.items(), aesera_dist_inputs + self.expected_rv_op_params.items(), aesara_dist_inputs ): assert_almost_equal(expected_value, actual_variable.eval(), decimal=self.decimal)