From 386a9cb304ed66874e4bc71086ec22728a6710b4 Mon Sep 17 00:00:00 2001 From: Justin Date: Thu, 9 Feb 2017 13:47:27 -0500 Subject: [PATCH] Fix CI failure (#129) --- spec/spec_helper.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index d25c92e9..0aacb227 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -26,6 +26,7 @@ def method_from_description(example) end def args_for_method(method) + return [] if method.to_s == 'spop' method_arity = @redises.real.method(method).arity if method_arity < 0 # -1 comes from def foo(*args) [1, 2] # probably good enough