Skip to content

Commit fca5ea1

Browse files
committed
sorts solutions array when testing
1 parent f0be815 commit fca5ea1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/algorithms/solvers.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
[-1, 0],
5959
[1, 0]
6060
]
61-
@test sols == real_solutions(I)
61+
@test sort(sols) == sort(real_solutions(I))
6262

6363
I = Ideal([x^2-1, y^2])
64-
@test sols == real_solutions(I)
64+
@test sort(sols) == sort(real_solutions(I))
6565
end

0 commit comments

Comments
 (0)