Skip to content

Commit 423b2f4

Browse files
committed
fix tests
1 parent eec5836 commit 423b2f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/plugins/variational_constraints/variational_constraints_macro_tests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,10 @@ end
189189
@testitem "stack_constraints" begin
190190
import GraphPPL: stack_constraints
191191

192-
@test stack_constraints(1, 2) = (1, 2)
193-
@test stack_constraints(1, (2, 1)) = (1, 2, 1)
194-
@test stack_constraints((1, 2), 3) = (1, 2, 3)
195-
@test stack_constraints((1, 3), (2, 1)) = (1, 3, 2, 1)
192+
@test stack_constraints(1, 2) == (1, 2)
193+
@test stack_constraints(1, (2, 1)) == (1, 2, 1)
194+
@test stack_constraints((1, 2), 3) == (1, 2, 3)
195+
@test stack_constraints((1, 3), (2, 1)) == (1, 3, 2, 1)
196196
end
197197

198198
@testitem "replace_begin_end" begin

0 commit comments

Comments
 (0)