Skip to content

Commit 705497f

Browse files
committed
fix test
1 parent 49021a6 commit 705497f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/rings/finite_rings/integer_mod_ring.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1774,7 +1774,7 @@ def _roots_univariate_polynomial(self, f, ring=None, multiplicities=True, algori
17741774
[0, 32, 9]
17751775
sage: (x^6 + x^5 + 9*x^4 + 20*x^3 + 3*x^2 + 18*x + 7).roots()
17761776
[(19, 1), (20, 2), (21, 3)]
1777-
sage: (x^6 + x^5 + 9*x^4 + 20*x^3 + 3*x^2 + 18*x + 7).roots(multiplicities=False)
1777+
sage: sorted((x^6 + x^5 + 9*x^4 + 20*x^3 + 3*x^2 + 18*x + 7).roots(multiplicities=False))
17781778
[19, 20, 21]
17791779
17801780
We can find roots without multiplicities over a ring whose modulus is

0 commit comments

Comments
 (0)