From 37c45fd3ee0e29c615ec1395cdb171419dd357c0 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 6 Feb 2022 21:12:24 +0100 Subject: [PATCH] Update test/test_layouts.jl Co-authored-by: Simon Christ --- test/test_layouts.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test_layouts.jl b/test/test_layouts.jl index 42a3b02c..90cf2ba8 100644 --- a/test/test_layouts.jl +++ b/test/test_layouts.jl @@ -28,5 +28,7 @@ end @testset "Plots.jl/issues/4083" begin p = plot(plot(1:2), plot(1:2); border = :grid, plot_title = "abc") - @test p.subplots[end][:framestyle] === :none + @test p[1][:framestyle] === :grid + @test p[2][:framestyle] === :grid + @test p[3][:framestyle] === :none end