Skip to content

Commit 705d88e

Browse files
committed
Small changes
1 parent f4a029c commit 705d88e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
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, :v1) == [f1.label]
97+
@test lsf(dfg, :a) == [f1.label]
9898
# Tags
99-
@test ls(dfg, tags=[:POSE]) == [:v1]
99+
@test ls(dfg, tags=[:POSE]) == [:a]
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) == [:v1, :v2] #, :abf1
109+
@test getAddHistory(dfg) == [:a, :b] #, :abf1
110110
@test getDescription(dfg) != nothing
111111
@test getLabelDict(dfg) != nothing
112112
# Existence
113-
@test exists(dfg, :v1) == true
113+
@test exists(dfg, :a) == true
114114
@test exists(dfg, v1) == true
115115
@test exists(dfg, :nope) == false
116116
# Sorting of results

0 commit comments

Comments
 (0)