From ff138486aea0807c4097d75a3442c8517a1d1a52 Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Mon, 6 Dec 2021 20:37:38 +0100 Subject: [PATCH] Match /~https://github.com/fonsp/Pluto.jl/pull/1703 --- src/precomputed/index.jl | 2 +- test/staterequest static.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/precomputed/index.jl b/src/precomputed/index.jl index a784b78..9eeddec 100644 --- a/src/precomputed/index.jl +++ b/src/precomputed/index.jl @@ -57,7 +57,7 @@ end function combination_iterator(group::VariableGroupPossibilities) Iterators.map(Iterators.product(group.possible_values...)) do combination bonds_dict = OrderedDict{Symbol,Any}( - n => OrderedDict{String,Any}("value" => v, "is_first_value" => true) for + n => OrderedDict{String,Any}("value" => v) for (n, v) in zip(group.names, combination) ) diff --git a/test/staterequest static.jl b/test/staterequest static.jl index 227dc98..a4581ff 100644 --- a/test/staterequest static.jl +++ b/test/staterequest static.jl @@ -100,7 +100,7 @@ using Base64 @testset "Method $(method)" for method in ["GET"], x = 3:7 - v(x) = OrderedDict("value" => x, "is_first_value" => true) + v(x) = OrderedDict("value" => x) bonds = OrderedDict("x" => v(x), "y" => v(7))