aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2013-06-08 21:26:24 -0500
committerJack Nagel2013-06-08 21:32:27 -0500
commite499795d71c38e61893bc9955eac6a855f42d714 (patch)
treeaa80d4e71836d059d0596ab716c6a3532913f138
parent1292f58f7dab93770d9c4e7f0d150377701ad970 (diff)
downloadhomebrew-e499795d71c38e61893bc9955eac6a855f42d714.tar.bz2
msgpack: use test assertion
-rw-r--r--Library/Formula/msgpack.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/msgpack.rb b/Library/Formula/msgpack.rb
index e02819b4d..918c25804 100644
--- a/Library/Formula/msgpack.rb
+++ b/Library/Formula/msgpack.rb
@@ -49,6 +49,6 @@ class Msgpack < Formula
EOS
system ENV.cc, "-o", "test", "test.c", "-lmsgpack"
- `./test` == "1\n2\n3\n"
+ assert_equal "1\n2\n3\n", `./test`
end
end