Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
seabbs committed Jul 10, 2024
1 parent b42ae83 commit 538841d
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ end
con_model_out = con_model()

@test typeof(con_model) <: DynamicPPL.Model
@test length(con_model_out[1]) == 5
@test all(con_model_out[1] .== vcat(fill(1.0, 3), fill(2.0, 2)))
@test con_model_out[2].intercept == 1.0
@test con_model_out[2].nscale == 2.0
@test length(con_model_out) == 5
@test all(con_model_out .== vcat(fill(1.0, 3), fill(2.0, 2)))
end

0 comments on commit 538841d

Please sign in to comment.