aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-06-08 21:26:23 -0500
committerJack Nagel2013-06-08 21:32:26 -0500
commit5d1320d1ff717a0cb5f93c41e0616bfeec11295c (patch)
treefa40d469226650bcc90cc9124382efd24ad883d1 /Library/Formula
parent2bc97435d2aa013317ef41814540e7ff131324c4 (diff)
downloadhomebrew-5d1320d1ff717a0cb5f93c41e0616bfeec11295c.tar.bz2
libvbucket: use test assertion
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libvbucket.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/libvbucket.rb b/Library/Formula/libvbucket.rb
index c74aecf12..272ce8d66 100644
--- a/Library/Formula/libvbucket.rb
+++ b/Library/Formula/libvbucket.rb
@@ -33,7 +33,7 @@ class Libvbucket < Formula
Open3.popen3("#{bin}/vbuckettool", "-", "hello", "world") do |stdin, stdout, _|
stdin.write(json)
stdin.close
- expected == stdout.read
+ assert_equal expected, stdout.read
end
end
end