diff options
| author | Jack Nagel | 2013-06-08 21:26:20 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-06-08 21:32:24 -0500 |
| commit | 27acaa8efceb009af0fa6a3cef60f3da38a721bb (patch) | |
| tree | 398162476b28b1bccb2b7709128c5321a10d461b | |
| parent | 11cf21f4204d4fdb9dcf156ef5e18e2d645539b2 (diff) | |
| download | homebrew-27acaa8efceb009af0fa6a3cef60f3da38a721bb.tar.bz2 | |
git-tracker: use test assertion
| -rw-r--r-- | Library/Formula/git-tracker.rb | 2 |
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 |
