aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-06-08 21:26:24 -0500
committerJack Nagel2013-06-08 21:32:27 -0500
commit68d91d1392bca5b30eec9c40529481938cbb7f00 (patch)
treee852b12ff676b55bcbcd2ec3e675262a92b3c41f /Library/Formula
parent96d5d7487083eb6bb198d3b4bdac7bf5565c9e95 (diff)
downloadhomebrew-68d91d1392bca5b30eec9c40529481938cbb7f00.tar.bz2
prips: use test assertion
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/prips.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/prips.rb b/Library/Formula/prips.rb
index 8e79eca59..d9c65ee60 100644
--- a/Library/Formula/prips.rb
+++ b/Library/Formula/prips.rb
@@ -12,6 +12,6 @@ class Prips < Formula
end
test do
- `'#{bin}/prips' 127.0.0.0/31`.strip == "127.0.0.0\n127.0.0.1"
+ assert_equal "127.0.0.0\n127.0.0.1", `'#{bin}/prips' 127.0.0.0/31`.strip
end
end