We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8595262 commit a8c9302Copy full SHA for a8c9302
test/runtests.jl
@@ -63,7 +63,7 @@ a_roots = copy(pN.a)
63
@test all(abs(sort(roots(poly(a_roots))) - sort(a_roots)) .< 1e6)
64
@test length(roots(p5)) == 4
65
@test roots(pNULL) == []
66
-@test roots(pR) == [1//2, 3//2]
+@test sort(roots(pR)) == [1//2, 3//2]
67
68
@test pNULL + 2 == p0 + 2 == 2 + p0 == Poly([2])
69
@test p2 - 2 == -2 + p2 == Poly([-1,1])
0 commit comments