From 1dc0c4343800f27e9a98c4d6d8ff48b1478ca803 Mon Sep 17 00:00:00 2001 From: Fred Callaway Date: Mon, 7 Jun 2021 11:05:11 -0700 Subject: [PATCH] Update test/test_axes.jl Co-authored-by: Simon Christ --- test/test_axes.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_axes.jl b/test/test_axes.jl index b1bc4139..f5bf5817 100644 --- a/test/test_axes.jl +++ b/test/test_axes.jl @@ -39,7 +39,7 @@ end pl = plot(1:3) @test Plots.xlims(pl) == Plots.widen(1,3) - pl = plot(1:3, xlims=:round) + pl = plot(0.5:0.5:2.5, xlims=:round) @test Plots.xlims(pl) == (1, 3) pl = plot(1:3, xlims=(1,5))