Skip to content

Commit e52dcb9

Browse files
committed
fix ordering mismatch in test
1 parent 70c57e5 commit e52dcb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/rings/polynomial/polynomial_element.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8377,8 +8377,8 @@ cdef class Polynomial(CommutativePolynomial):
83778377
sage: A = PolynomialRing(R, 'y')
83788378
sage: y = A.gen()
83798379
sage: f = 10*y^2 - y^3 - 9
8380-
sage: f.roots(multiplicities=False) # needs sage.libs.pari
8381-
[1, 0, 3, 6]
8380+
sage: sorted(f.roots(multiplicities=False)) # needs sage.libs.pari
8381+
[0, 1, 3, 6]
83828382
83838383
An example over the complex double field (where root finding is
83848384
fast, thanks to NumPy)::

0 commit comments

Comments
 (0)