From 8b40d5e86796c979a2d1fc405464ee117b897bea Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Thu, 10 Sep 2015 16:46:52 -0400 Subject: [PATCH] tests --- test/runtests.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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