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 67cbf3d commit 5c74be9Copy full SHA for 5c74be9
.travis.yml
@@ -9,6 +9,7 @@ julia:
9
- 1.1
10
- 1.2
11
- 1.3
12
+ - 1.4
13
- nightly
14
15
matrix:
@@ -24,7 +25,7 @@ codecov: true
24
25
jobs:
26
include:
27
- stage: "Documentation"
- julia: 1.2
28
+ julia: 1.4
29
os: linux
30
script:
31
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
test/Polynomial.jl
@@ -226,7 +226,7 @@ end
226
p = fromroots(Polynomial, r)
227
@test fromroots(r) == Polynomial([6, -5, 1])
228
@test p == Polynomial([6, -5, 1])
229
- @test roots(p) ≈ r
+ @test sort(roots(p)) ≈ r
230
231
@test roots(p0) == roots(p1) == roots(pNULL) == []
232
@test roots(Polynomial([0,1,0])) == [0.0]
0 commit comments