diff options
| author | Mike Naberezny | 2014-05-23 16:48:38 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-23 17:00:44 -0700 |
| commit | 2b3ee6230f398e3f3fd702d72880f6e77eae8531 (patch) | |
| tree | 1226edfac49435fdc995bd2ad2ae1e0d2c5bbf33 /Library/Formula | |
| parent | c9359e4bc8f94cca2141878928d4df2ca5eb37b6 (diff) | |
| download | homebrew-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.rb | 2 |
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 |
