Skip to content

Commit 1a69659

Browse files
committed
Fix accidental typo in the test
1 parent 3b2a78f commit 1a69659

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/Core/bayes.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,10 @@ end
206206
end
207207

208208

209-
c2 = chi2(postsim, x0; reduce = true)
210-
c2nn = chi2(postsim_nn, x0; reduce = true)
209+
c2 = chi2(postsim, x; reduce = true)
210+
c2nn = chi2(postsim_nn, x; reduce = true)
211211
@info c2
212-
@info logdensityof(postsim, x0)
212+
@info logdensityof(postsim, x)
213213
@test all(x -> reduce(&, x .< 1.25), c2)
214214
@test all(x -> reduce(&, x .≈ 0), c2nn)
215215

0 commit comments

Comments
 (0)