diff options
Diffstat (limited to 'Library/Homebrew/test/dev-cmd/tap_spec.rb')
| -rw-r--r-- | Library/Homebrew/test/dev-cmd/tap_spec.rb | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Library/Homebrew/test/dev-cmd/tap_spec.rb b/Library/Homebrew/test/dev-cmd/tap_spec.rb index a24c67aae..93e9c0ed6 100644 --- a/Library/Homebrew/test/dev-cmd/tap_spec.rb +++ b/Library/Homebrew/test/dev-cmd/tap_spec.rb @@ -3,13 +3,11 @@ describe "brew tap", :integration_test do path = Tap::TAP_DIRECTORY/"homebrew/homebrew-foo" path.mkpath path.cd do - shutup do - system "git", "init" - system "git", "remote", "add", "origin", "https://github.com/Homebrew/homebrew-foo" - FileUtils.touch "readme" - system "git", "add", "--all" - system "git", "commit", "-m", "init" - end + system "git", "init" + system "git", "remote", "add", "origin", "https://github.com/Homebrew/homebrew-foo" + FileUtils.touch "readme" + system "git", "add", "--all" + system "git", "commit", "-m", "init" end expect { brew "tap" } |
