From 6f0579a3475fb1e1b6afbbf59975ae06be548fc8 Mon Sep 17 00:00:00 2001 From: Daniel Saunders Date: Tue, 25 Jul 2023 15:59:07 -0700 Subject: [PATCH] fix moment test --- tests/distributions/test_multivariate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/distributions/test_multivariate.py b/tests/distributions/test_multivariate.py index 6158bbd31c..6f6159ce3b 100644 --- a/tests/distributions/test_multivariate.py +++ b/tests/distributions/test_multivariate.py @@ -1069,7 +1069,7 @@ def test_car_moment(self, mu, size, expected): ) def test_icar_moment(self, W, expected): with pm.Model() as model: - RV = pm.ICAR("phi", W=W) + RV = pm.ICAR("x", W=W) assert_moment_is_expected(model, expected) @pytest.mark.parametrize(