Skip to content

Commit 3bc0df4

Browse files
committed
fix tests
1 parent 8ce5418 commit 3bc0df4

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
data {
22
}
33
model {
4-
target += von_mises_lcdf(1|0,1);
4+
target += binomial_logit_lcdf(1|0,1);
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
data {
22
}
33
model {
4-
target += von_mises_lccdf(1|0,1);
4+
target += binomial_logit_lccdf(1|0,1);
55
}

test/integration/bad/missing_dist_suffix/stanc.expected

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,27 @@ Semantic error in 'non_existing_distribution_suffix1.stan', line 4, column 14 to
7474

7575
Function 'binomial_logit_cdf' is not implemented for distribution 'binomial_logit'.
7676
$ ../../../../../install/default/bin/stanc non_existing_distribution_suffix2.stan
77+
Semantic error in 'non_existing_distribution_suffix2.stan', line 4, column 14 to column 40:
78+
-------------------------------------------------
79+
2: }
80+
3: model {
81+
4: target += binomial_logit_lcdf(1|0,1);
82+
^
83+
5: }
84+
-------------------------------------------------
7785

86+
Function 'binomial_logit_lcdf' is not implemented for distribution 'binomial_logit'.
7887
$ ../../../../../install/default/bin/stanc non_existing_distribution_suffix3.stan
88+
Semantic error in 'non_existing_distribution_suffix3.stan', line 4, column 14 to column 41:
89+
-------------------------------------------------
90+
2: }
91+
3: model {
92+
4: target += binomial_logit_lccdf(1|0,1);
93+
^
94+
5: }
95+
-------------------------------------------------
7996

97+
Function 'binomial_logit_lccdf' is not implemented for distribution 'binomial_logit'.
8098
$ ../../../../../install/default/bin/stanc non_existing_distribution_suffix4.stan
8199
Semantic error in 'non_existing_distribution_suffix4.stan', line 4, column 14 to column 41:
82100
-------------------------------------------------

0 commit comments

Comments
 (0)