From 2b3ee6230f398e3f3fd702d72880f6e77eae8531 Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Fri, 23 May 2014 16:48:38 -0700 Subject: tag: use assert_equal instead of assert with == Closes #29536. Signed-off-by: Adam Vandenberg --- Library/Formula/tag.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library/Formula') 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 -- cgit v1.2.3