aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike Naberezny2014-05-23 16:51:12 -0700
committerAdam Vandenberg2014-05-23 17:00:52 -0700
commite8bd6e1747a4ea22c0749c7c4f842cea73cb3a33 (patch)
treeae71d1436706ab56a5e00b72581af87b3af03e7c /Library
parent2b3ee6230f398e3f3fd702d72880f6e77eae8531 (diff)
downloadhomebrew-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')
-rw-r--r--Library/Formula/tpp.rb4
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