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 f4a029c commit 705d88eCopy full SHA for 705d88e
test/iifInterfaceTests.jl
@@ -94,9 +94,9 @@ end
94
@test symdiff([:a, :b], getVariableIds(dfg)) == []
95
@test getFactorIds(dfg) == [:abf1] # Unless we add the prior!
96
#
97
- @test lsf(dfg, :v1) == [f1.label]
+ @test lsf(dfg, :a) == [f1.label]
98
# Tags
99
- @test ls(dfg, tags=[:POSE]) == [:v1]
+ @test ls(dfg, tags=[:POSE]) == [:a]
100
@test symdiff(ls(dfg, tags=[:POSE, :LANDMARK]), ls(dfg, tags=[:VARIABLE])) == []
101
# Regexes
102
@test ls(dfg, r"a") == [v1.label]
@@ -106,11 +106,11 @@ end
106
@test lsf(dfg, r"abf.*") == [f1.label]
107
108
# Accessors
109
- @test getAddHistory(dfg) == [:v1, :v2] #, :abf1
+ @test getAddHistory(dfg) == [:a, :b] #, :abf1
110
@test getDescription(dfg) != nothing
111
@test getLabelDict(dfg) != nothing
112
# Existence
113
- @test exists(dfg, :v1) == true
+ @test exists(dfg, :a) == true
114
@test exists(dfg, v1) == true
115
@test exists(dfg, :nope) == false
116
# Sorting of results
0 commit comments