From 4ad2d94faa1a6c5f54a77f2891d7d9882bfe4057 Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Thu, 9 Jun 2016 08:59:41 -0400 Subject: [PATCH] make tests pass --- RecipesBase/test/runtests.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RecipesBase/test/runtests.jl b/RecipesBase/test/runtests.jl index f6f2d7b34..2a695dc21 100644 --- a/RecipesBase/test/runtests.jl +++ b/RecipesBase/test/runtests.jl @@ -16,13 +16,13 @@ end # this is similar to how Plots would call the method typealias KW Dict{Symbol,Any} -d = KW() -kw = KW(:customcolor => :red) -args = RecipesBase.apply_recipe(d, kw, T(), 2; issubplot = false) +d = KW(:customcolor => :red) +data_list = RecipesBase.apply_recipe(d, T(), 2) # make sure the attribute dictionary was populated correctly, and the returned arguments are as expected -@test args == (srand(1); (rand(10,2),)) +@test data_list[1].args == (srand(1); (rand(10,2),)) @test d == KW( + :customcolor => :red, :markershape => :auto, :markercolor => :red, :xrotation => 5,