Skip to content

Commit f4a029c

Browse files
committed
Bringing to latest
2 parents 219124d + 274f156 commit f4a029c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

test/iifInterfaceTests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ end
9494
@test symdiff([:a, :b], getVariableIds(dfg)) == []
9595
@test getFactorIds(dfg) == [:abf1] # Unless we add the prior!
9696
#
97-
@test lsf(dfg, :a) == [f1.label]
97+
@test lsf(dfg, :v1) == [f1.label]
9898
# Tags
99-
@test ls(dfg, tags=[:POSE]) == [:a]
99+
@test ls(dfg, tags=[:POSE]) == [:v1]
100100
@test symdiff(ls(dfg, tags=[:POSE, :LANDMARK]), ls(dfg, tags=[:VARIABLE])) == []
101101
# Regexes
102102
@test ls(dfg, r"a") == [v1.label]
@@ -106,11 +106,11 @@ end
106106
@test lsf(dfg, r"abf.*") == [f1.label]
107107

108108
# Accessors
109-
@test getAddHistory(dfg) == [:a, :b] #, :abf1
109+
@test getAddHistory(dfg) == [:v1, :v2] #, :abf1
110110
@test getDescription(dfg) != nothing
111111
@test getLabelDict(dfg) != nothing
112112
# Existence
113-
@test exists(dfg, :a) == true
113+
@test exists(dfg, :v1) == true
114114
@test exists(dfg, v1) == true
115115
@test exists(dfg, :nope) == false
116116
# Sorting of results

test/runtests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ using IncrementalInference
77
# Instantiate the APIs that you would like to test here
88
# Can do duplicates with different parameters.
99
apis = [
10-
GraphsDFG{NoSolverParams}(),
10+
# GraphsDFG{NoSolverParams}(),
1111
LightDFG{NoSolverParams}(),
12-
MetaGraphsDFG{NoSolverParams}(),
13-
SymbolDFG{NoSolverParams}(),
12+
# MetaGraphsDFG{NoSolverParams}(),
13+
# SymbolDFG{NoSolverParams}(),
1414
CloudGraphsDFG{SolverParams}("localhost", 7474, "neo4j", "test",
1515
"testUser", "testRobot", "testSession",
1616
nothing,
1717
nothing,
1818
IncrementalInference.decodePackedType,
1919
IncrementalInference.rebuildFactorMetadata!,
2020
solverParams=SolverParams())
21-
]
21+
]
2222
for api in apis
2323
@testset "Testing Driver: $(typeof(api))" begin
2424
@info "Testing Driver: $(api)"

0 commit comments

Comments
 (0)