Skip to content

Commit 5c74be9

Browse files
committed
fix one test
1 parent 67cbf3d commit 5c74be9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ julia:
99
- 1.1
1010
- 1.2
1111
- 1.3
12+
- 1.4
1213
- nightly
1314

1415
matrix:
@@ -24,7 +25,7 @@ codecov: true
2425
jobs:
2526
include:
2627
- stage: "Documentation"
27-
julia: 1.2
28+
julia: 1.4
2829
os: linux
2930
script:
3031
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'

test/Polynomial.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ end
226226
p = fromroots(Polynomial, r)
227227
@test fromroots(r) == Polynomial([6, -5, 1])
228228
@test p == Polynomial([6, -5, 1])
229-
@test roots(p) r
229+
@test sort(roots(p)) r
230230

231231
@test roots(p0) == roots(p1) == roots(pNULL) == []
232232
@test roots(Polynomial([0,1,0])) == [0.0]

0 commit comments

Comments
 (0)