Skip to content

Commit ecefa73

Browse files
committed
remove extra printing statements
1 parent e5f0272 commit ecefa73

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

test/essential/container.jl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,11 @@ using Turing
99
@testset "container.jl" begin
1010
@model function test()
1111
a ~ Normal(0, 1)
12-
println("a")
1312
x ~ Bernoulli(1)
14-
println("x")
1513
b ~ Gamma(2, 3)
16-
println("b")
1714
1 ~ Bernoulli(x / 2)
18-
println("1")
1915
c ~ Beta()
20-
println("c")
2116
0 ~ Bernoulli(x / 2)
22-
println("0")
2317
return x
2418
end
2519

0 commit comments

Comments
 (0)