Skip to content

Commit

Permalink
updated unit test staticmethod to include underscore in var name
Browse files Browse the repository at this point in the history
  • Loading branch information
Dekermanjian committed Sep 12, 2024
1 parent b284be1 commit 753082f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_printing.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ class TestLatexRepr:
def simple_model() -> Model:
with Model() as simple_model:
error = HalfNormal("error", 0.5)
alpha = Normal("alpha", 0, 1)
Normal("y", alpha, error)
alpha_a = Normal("alpha_a", 0, 1)
Normal("y", alpha_a, error)
return simple_model

def test_latex_escaped_underscore(self):
Expand Down

0 comments on commit 753082f

Please sign in to comment.