Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp committed Dec 6, 2021
1 parent 001d96d commit ff13848
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/precomputed/index.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)

Expand Down
2 changes: 1 addition & 1 deletion test/staterequest static.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down

0 comments on commit ff13848

Please sign in to comment.