Skip to content

Commit 0bcf928

Browse files
committed
Actually fix test
1 parent acc3bfb commit 0bcf928

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/mcmc/gibbs.jl

Lines changed: 2 additions & 2 deletions
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 = Int(undef, num_zs)
601+
z = Vector{Int}(undef, num_zs)
602602
z .~ Poisson(1.0)
603603
num_ms = sum(z)
604604
m = M(undef, num_ms)
@@ -842,7 +842,7 @@ end
842842
check_MoGtest_default_z_vector(chain; atol=0.2)
843843
end
844844

845-
@testset "externsalsampler" begin
845+
@testset "externalsampler" begin
846846
@model function demo_gibbs_external()
847847
m1 ~ Normal()
848848
m2 ~ Normal()

0 commit comments

Comments
 (0)