From e9291c7c4f90ac24ed95964861f9370f67dd8263 Mon Sep 17 00:00:00 2001 From: Alexey Stukalov Date: Tue, 28 Jun 2022 10:20:21 -0700 Subject: [PATCH] 3rd round of trying to make the format doggy happy --- test/context_implementations.jl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/context_implementations.jl b/test/context_implementations.jl index 62d8469c4..c548a3d8a 100644 --- a/test/context_implementations.jl +++ b/test/context_implementations.jl @@ -89,13 +89,15 @@ context, NoDist(Product(fill(Uniform(-20, 20), 5))), @varname(x), - varinfo + varinfo, ) x = varinfo[@varname(x)] @test x isa Vector{<:Real} @test length(x) == 5 - return (nothing, - DynamicPPL.acclogp!!(varinfo, sum(logpdf.(Ref(Normal(0, 1)), x)))) + return ( + nothing, + DynamicPPL.acclogp!!(varinfo, sum(logpdf.(Ref(Normal(0, 1)), x))), + ) end vi_expl = VarInfo(expl_model) @test isfinite(logjoint(expl_model, vi_expl))