diff --git a/test/runtests.jl b/test/runtests.jl index ca49b492..a5d4bf32 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -7,7 +7,7 @@ using FactCheck facts("Qwt") do plotDefault!(:show, false) - @fact plotter!(:qwt) --> nothing + @fact plotter!(:qwt) --> Plots.QwtPackage() @fact plotter() --> Plots.QwtPackage() @fact typeof(plot(1:10)) --> Plot @@ -57,7 +57,7 @@ facts("Qwt") do end facts("Gadfly") do - @fact plotter!(:gadfly) --> nothing + @fact plotter!(:gadfly) --> Plots.GadflyPackage() @fact plotter() --> Plots.GadflyPackage() @fact typeof(plot(1:10)) --> Plot end