Skip to content

Commit

Permalink
Merge pull request #427 from JuliaRobotics/21Q1/maint/prep14
Browse files Browse the repository at this point in the history
fix depr warning
  • Loading branch information
dehann committed Mar 27, 2021
2 parents b0a485a + 80e3b3f commit c72bcca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/testpackingconverters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ upv1data = unpackVariableNodeData(fg, packedv1data)
# global packedv1data = convert(IncrementalInference.PackedVariableNodeData, DFG.getSolverData(v1))
# global upv1data = convert(IncrementalInference.VariableNodeData, packedv1data)

@test compareAll(DFG.getSolverData(v1), upv1data, skip=[:softtype;])
@test compareAll(DFG.getSolverData(v1).softtype, upv1data.softtype)
@test compareAll(DFG.getSolverData(v1), upv1data, skip=[:variableType;])
@test compareAll(DFG.getSolverData(v1).variableType, upv1data.variableType)

##

Expand Down

0 comments on commit c72bcca

Please sign in to comment.