From bbc883ae6959ee95e95211ef0790750d350225c6 Mon Sep 17 00:00:00 2001 From: Simone Carlo Surace <51025924+simsurace@users.noreply.github.com> Date: Tue, 6 Feb 2024 11:56:10 +0100 Subject: [PATCH] Satisfy reviewdog Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- test/flatten.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/flatten.jl b/test/flatten.jl index 6490062..975cc5e 100644 --- a/test/flatten.jl +++ b/test/flatten.jl @@ -42,7 +42,7 @@ # Prevent regression of PR #67 @testset "Type stability of unflatten" begin - θ = (1., ((2., 3.), 4.)) + θ = (1.0, ((2.0, 3.0), 4.0)) x, unflatten = flatten(θ) @test (@inferred unflatten(x)) == θ end