From d843f70a3501e05d81777ef9d0e8612fcaa1a659 Mon Sep 17 00:00:00 2001 From: Bruce Steedman Date: Fri, 30 Sep 2016 23:53:42 +0100 Subject: [PATCH] remove assertion, leave command --- Library/Homebrew/test/test_tap.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/test_tap.rb b/Library/Homebrew/test/test_tap.rb index 3b72c3c636..368156e6ba 100644 --- a/Library/Homebrew/test/test_tap.rb +++ b/Library/Homebrew/test/test_tap.rb @@ -25,7 +25,7 @@ class IntegrationCommandTestTap < IntegrationCommandTestCase assert_match "Unpinned homebrew/foo", cmd("tap-unpin", "homebrew/foo") assert_match "Tapped", cmd("tap", "homebrew/bar", path/".git") assert_match "Untapped", cmd("untap", "homebrew/bar") - assert_match /.*/, cmd("tap", "homebrew/bar", path/".git", "-q", "--full") + cmd("tap", "homebrew/bar", path/".git", "-q", "--full") assert_match "Untapped", cmd("untap", "homebrew/bar") end end