aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2013-03-25 13:35:19 -0500
committerJack Nagel2013-03-26 00:02:40 -0500
commit2d9c37bcc2a8aebe87261c2c8311c499f98aa91d (patch)
treeff39a85b584542bf6c4071d1509b27afb0b73694
parenta768d6ff25ded471e6159b4f9ecf420731f095ba (diff)
downloadhomebrew-2d9c37bcc2a8aebe87261c2c8311c499f98aa91d.tar.bz2
lbzip2: fix test
-rw-r--r--Library/Formula/lbzip2.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/lbzip2.rb b/Library/Formula/lbzip2.rb
index 4fe2861a8..af170689c 100644
--- a/Library/Formula/lbzip2.rb
+++ b/Library/Formula/lbzip2.rb
@@ -13,8 +13,8 @@ class Lbzip2 < Formula
end
test do
- system 'touch', 'fish'
- system 'lbzip2', 'fish'
- system 'lbunzip2', 'fish.bz2'
+ touch "fish"
+ system "#{bin}/lbzip2", "fish"
+ system "#{bin}/lbunzip2", "fish.bz2"
end
end