diff options
| author | Mike Naberezny | 2014-05-23 16:51:12 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-23 17:00:52 -0700 |
| commit | e8bd6e1747a4ea22c0749c7c4f842cea73cb3a33 (patch) | |
| tree | ae71d1436706ab56a5e00b72581af87b3af03e7c /Library/Formula | |
| parent | 2b3ee6230f398e3f3fd702d72880f6e77eae8531 (diff) | |
| download | homebrew-e8bd6e1747a4ea22c0749c7c4f842cea73cb3a33.tar.bz2 | |
tpp: use assert_equal instead of assert with ==
Closes #29537.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/tpp.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/tpp.rb b/Library/Formula/tpp.rb index 9c629d0df..d0c934186 100644 --- a/Library/Formula/tpp.rb +++ b/Library/Formula/tpp.rb @@ -34,7 +34,7 @@ class Tpp < Formula end test do - assert `#{bin}/tpp --version`.chomp == - "tpp - text presentation program #{version}" + assert_equal "tpp - text presentation program #{version}", + `#{bin}/tpp --version`.chomp end end |
