From 2831c820f26ee7883965aab55360f460ca345baf Mon Sep 17 00:00:00 2001 From: jverzani Date: Tue, 7 Apr 2020 16:06:58 -0400 Subject: [PATCH] v1.0 compliance with range --- test/ChebyshevT.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ChebyshevT.jl b/test/ChebyshevT.jl index a1af28be..addbfa46 100644 --- a/test/ChebyshevT.jl +++ b/test/ChebyshevT.jl @@ -45,7 +45,7 @@ end end @testset "Roots $i" for i in 1:5 - roots = cos.(range(-π, 0, length = 2i + 1)[2:2:end]) + roots = cos.(range(-π, stop=0, length = 2i + 1)[2:2:end]) target = ChebyshevT(vcat(zeros(i), 1)) res = fromroots(ChebyshevT, roots) .* 2^(i - 1) @test res == target