aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-06-08 21:26:20 -0500
committerJack Nagel2013-06-08 21:32:24 -0500
commit27acaa8efceb009af0fa6a3cef60f3da38a721bb (patch)
tree398162476b28b1bccb2b7709128c5321a10d461b /Library/Formula
parent11cf21f4204d4fdb9dcf156ef5e18e2d645539b2 (diff)
downloadhomebrew-27acaa8efceb009af0fa6a3cef60f3da38a721bb.tar.bz2
git-tracker: use test assertion
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/git-tracker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/git-tracker.rb b/Library/Formula/git-tracker.rb
index 59f358bf5..768c8f04e 100644
--- a/Library/Formula/git-tracker.rb
+++ b/Library/Formula/git-tracker.rb
@@ -14,7 +14,7 @@ class GitTracker < Formula
test do
require 'open3'
Open3.popen3("#{bin}/git-tracker", "test-command") do |_, stdout, _|
- "git-tracker is here. How are you?" == stdout.read.strip
+ assert_equal "git-tracker is here. How are you?", stdout.read.strip
end
end
end