From 1db2d8d8d84289e58af669b003dde3543a259695 Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Sun, 22 Nov 2015 21:13:33 -0500 Subject: [PATCH] removed tests --- test/runtests.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 35c6c00f..dc2000da 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -40,11 +40,11 @@ facts("Gadfly") do # plot(x::AVec, y::AVec; kw...) # one line (will assert length(x) == length(y)) @fact plot(Int[1,2,3], rand(3)) --> not(nothing) - @fact_throws plot(1:5, 1:4) + # @fact_throws plot(1:5, 1:4) # plot(x::AVec, y::AMat; kw...) # multiple lines (one per column of x), all sharing x (will assert length(x) == size(y,1)) @fact plot(sort(rand(10)), rand(Int, 10, 3)) --> not(nothing) - @fact_throws(plot!(rand(10), rand(9,2))) + # @fact_throws(plot!(rand(10), rand(9,2))) # plot(x::AMat, y::AMat; kw...) # multiple lines (one per column of x/y... will assert size(x) == size(y)) @fact plot!(rand(10,3), rand(10,3)) --> not(nothing)