From 021691d2208d248f5b8e48af1292cd7665e31639 Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Thu, 17 Sep 2020 16:43:40 +0200 Subject: [PATCH] fix 1.3 tests --- test/integration_dates.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration_dates.jl b/test/integration_dates.jl index 6b7e9943..6a5756c7 100644 --- a/test/integration_dates.jl +++ b/test/integration_dates.jl @@ -9,7 +9,7 @@ using Plots, Test, Dates p = plot(x,y, widen = false) vspan!(p, rx, label="", alpha=0.2) - ref_ylims = (y[begin], y[end]) + ref_ylims = (y[1], y[end]) ref_xlims = (x[1].instant.periods.value, x[end].instant.periods.value) @test Plots.ylims(p) == ref_ylims @test Plots.xlims(p) == ref_xlims