From 718b6f8b0c5755db65a034348eacc34673980480 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Thu, 12 Jun 2014 21:47:36 -0500 Subject: [PATCH] No need to send, just call the method --- Library/Homebrew/test/test_fails_with.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/test_fails_with.rb b/Library/Homebrew/test/test_fails_with.rb index 73393a587f..6491e77d60 100644 --- a/Library/Homebrew/test/test_fails_with.rb +++ b/Library/Homebrew/test/test_fails_with.rb @@ -15,7 +15,7 @@ class FailsWithTests < Test::Unit::TestCase end def fails_with(*args, &block) - @f.send(:fails_with, *args, &block) + @f.fails_with(*args, &block) end def build_cc(sym, build, version=nil)