aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike Naberezny2014-05-23 16:48:38 -0700
committerAdam Vandenberg2014-05-23 17:00:44 -0700
commit2b3ee6230f398e3f3fd702d72880f6e77eae8531 (patch)
tree1226edfac49435fdc995bd2ad2ae1e0d2c5bbf33 /Library/Formula
parentc9359e4bc8f94cca2141878928d4df2ca5eb37b6 (diff)
downloadhomebrew-2b3ee6230f398e3f3fd702d72880f6e77eae8531.tar.bz2
tag: use assert_equal instead of assert with ==
Closes #29536. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/tag.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/tag.rb b/Library/Formula/tag.rb
index 14d9622a4..860e5ac47 100644
--- a/Library/Formula/tag.rb
+++ b/Library/Formula/tag.rb
@@ -18,6 +18,6 @@ class Tag < Formula
test_file = Pathname.pwd+'test_file'
touch test_file
system "#{bin}/tag", '--add', test_tag, test_file
- assert `#{bin}/tag --list --no-name #{test_file}`.chomp == test_tag
+ assert_equal test_tag, `#{bin}/tag --list --no-name #{test_file}`.chomp
end
end