From d8133bf4479ad6e355dc649ee56bda1fbd9e2d9d Mon Sep 17 00:00:00 2001 From: Zhiming Wang Date: Sun, 18 Sep 2016 07:22:00 -0400 Subject: [PATCH] multitail: do not manually set TERM in test No longer necessary since https://github.com/Homebrew/brew/pull/982. --- Formula/multitail.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/multitail.rb b/Formula/multitail.rb index 902121ec39e56..e2bf65d91ad6d 100644 --- a/Formula/multitail.rb +++ b/Formula/multitail.rb @@ -20,8 +20,6 @@ def install end test do - ENV["TERM"] = "xterm" - assert_match "multitail #{version}", - shell_output("#{bin}/multitail -h 2>&1", 1) + assert_match version.to_s, shell_output("#{bin}/multitail -h 2>&1", 1) end end