From 54f29f283ebb3506667183cbd224fb9fb7d807da Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Mon, 12 Oct 2020 14:05:44 +0200 Subject: [PATCH] Update test_defaults.jl --- test/test_defaults.jl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/test_defaults.jl b/test/test_defaults.jl index 8a45057a..a912fbb0 100644 --- a/test/test_defaults.jl +++ b/test/test_defaults.jl @@ -1,8 +1,11 @@ using Plots, Test const PLOTS_DEFAULTS = Dict(:theme => :wong2) +Plots.__init__() @testset "Loading theme" begin - Plots.__init__() plot(1:5)[1][1][:series_color] == colorant"black" end + +empty!(PLOTS_DEFAULTS) +Plots.__init__()