Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit 798fc29

Browse files
authored
missing ; in model code
1 parent fdfd5f7 commit 798fc29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pystan/tests/test_misc_args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class TestArgs(unittest.TestCase):
1010
@classmethod
1111
def setUpClass(cls):
12-
model_code = 'parameters {real x;real y;real z;} model {x ~ normal(0,1);y ~ normal(0,1);z ~ normal(0,1)}'
12+
model_code = 'parameters {real x;real y;real z;} model {x ~ normal(0,1);y ~ normal(0,1);z ~ normal(0,1);}'
1313
cls.model = pystan.StanModel(model_code=model_code)
1414

1515
def test_control(self):

0 commit comments

Comments
 (0)