From d32fc4508fafd80665747083299fb9eb5700ea7d Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Thu, 8 Mar 2018 08:36:01 +0000 Subject: [PATCH] deps: fix test? typo. --- Library/Homebrew/cmd/deps.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/deps.rb b/Library/Homebrew/cmd/deps.rb index 4ba438baac..8beb84e408 100644 --- a/Library/Homebrew/cmd/deps.rb +++ b/Library/Homebrew/cmd/deps.rb @@ -203,7 +203,7 @@ module Homebrew dependables = reqs + deps dependables = dependables.reject(&:optional?) unless ARGV.include?("--include-optional") dependables = dependables.reject(&:build?) unless ARGV.include?("--include-build") - dependables = dependables.reject(&:test) unless ARGV.include?("--include-test") + dependables = dependables.reject(&:test?) unless ARGV.include?("--include-test") dependables = dependables.reject(&:recommended?) if ARGV.include?("--skip-recommended") max = dependables.length - 1 @dep_stack.push f.name