aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-06-08 21:26:22 -0500
committerJack Nagel2013-06-08 21:32:25 -0500
commit993a6b8e71c59fe506dc89727ae4765a2d2613f2 (patch)
tree8b57d7f0ce6bca0805814945b567984fdfe5dcf0 /Library/Formula
parenteb0341d84ea13750c3d748c96effe073c07d59dc (diff)
downloadhomebrew-993a6b8e71c59fe506dc89727ae4765a2d2613f2.tar.bz2
jshon: use test assertion
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/jshon.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/jshon.rb b/Library/Formula/jshon.rb
index 9caa75b91..75b3957c1 100644
--- a/Library/Formula/jshon.rb
+++ b/Library/Formula/jshon.rb
@@ -19,7 +19,7 @@ class Jshon < Formula
Open3.popen3("#{bin}/jshon", "-l") do |stdin, stdout, _|
stdin.write("[true,false,null]")
stdin.close
- "3" == stdout.read.strip
+ assert_equal "3", stdout.read.strip
end
end
end