Skip to content

Commit ad11da9

Browse files
committed
Fix broken test
1 parent a4387a8 commit ad11da9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/mcmc/gibbs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ end
598598
@model function dynamic_model_with_dot_tilde(
599599
num_zs=10, ::Type{M}=Vector{Float64}
600600
) where {M}
601-
z = M(undef, num_zs)
601+
z = Int(undef, num_zs)
602602
z .~ Poisson(1.0)
603603
num_ms = sum(z)
604604
m = M(undef, num_ms)

0 commit comments

Comments
 (0)