aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_options.rb
diff options
context:
space:
mode:
authorJack Nagel2014-06-10 22:43:47 -0500
committerJack Nagel2014-06-18 20:34:09 -0500
commit16884ea08e115723ca595bf29389cddef54f9c63 (patch)
tree79e3c0c89981c4978cda2889129fd771e64cb00f /Library/Homebrew/test/test_options.rb
parent203653e821c40a68dbdfd9a9457214dfa63111ad (diff)
downloadhomebrew-16884ea08e115723ca595bf29389cddef54f9c63.tar.bz2
Switch to Minitest
Diffstat (limited to 'Library/Homebrew/test/test_options.rb')
-rw-r--r--Library/Homebrew/test/test_options.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_options.rb b/Library/Homebrew/test/test_options.rb
index 559beab2d..96d1ecf05 100644
--- a/Library/Homebrew/test/test_options.rb
+++ b/Library/Homebrew/test/test_options.rb
@@ -18,7 +18,7 @@ class OptionTests < Homebrew::TestCase
foo = Option.new("foo")
bar = Option.new("bar")
assert_equal foo, @option
- assert_not_equal bar, @option
+ refute_equal bar, @option
assert @option.eql?(foo)
assert !@option.eql?(bar)
assert_operator bar, :<, foo