From 04d80ef1720a1dc46bd39b1dfbddf1cce8adc868 Mon Sep 17 00:00:00 2001 From: asharma-ror Date: Wed, 22 Apr 2015 11:08:10 +0530 Subject: [PATCH] Fixed the failing case. --- tests/spec/setup_association_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/spec/setup_association_spec.rb b/tests/spec/setup_association_spec.rb index ee189c6..644ddc3 100644 --- a/tests/spec/setup_association_spec.rb +++ b/tests/spec/setup_association_spec.rb @@ -9,10 +9,10 @@ module Impressionist before do # expects attr_accessible to return true - # and pass 11 arguments + # and pass 12 arguments mock. expect(:attr_accessible, true) do |args| - args.size == 11 + args.size == 12 end end