We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72a90e3 commit 09e3417Copy full SHA for 09e3417
test/testBlocks.jl
@@ -792,7 +792,8 @@ function VSDTestBlock!(fg, v1)
792
@test mergeVariableState!(fg, :a, vnd) == 1
793
794
# Bulk copy update x0
795
- @test DFG.mergeVariableStates!(fg, Vector{Pair{Symbol, VariableState}}([:a=>vnd])) == 1
+ @test DFG.mergeVariableStates!(fg, [:a=>vnd]) == 1
796
+ @test DFG.mergeVariableStates!(fg, :a, [vnd]) == 1
797
altVnd = vnd |> deepcopy
798
keepVnd = getVariableState(getVariable(fg, :a), :parametric) |> deepcopy
799
altVnd.infoPerCoord .= [-99.0;]
0 commit comments