From baff121ab7bbbc001373be3ab8e7532731e7b377 Mon Sep 17 00:00:00 2001 From: Ben Mares Date: Mon, 19 Feb 2024 21:56:59 +0100 Subject: [PATCH] Rename to avoid clobber of tests with the same name --- tests/test_pymc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_pymc.py b/tests/test_pymc.py index 114113d..80b504a 100644 --- a/tests/test_pymc.py +++ b/tests/test_pymc.py @@ -15,7 +15,7 @@ def test_pymc_model(): trace.posterior.a -def test_pymc_model(): +def test_pymc_model_with_coordinate(): with pm.Model() as model: model.add_coord("foo", length=5) pm.Normal("a", dims="foo")