diff options
| author | Jack Nagel | 2014-06-10 22:43:47 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-06-18 20:34:09 -0500 |
| commit | 06305e621199409f954b34166194e18e610d4e89 (patch) | |
| tree | fdff43f2c51542f04e7e7f03786f446bbe2db02f /Library/Homebrew/test/test_options.rb | |
| parent | 89d74ec475633be7b44b10f7c3a1d9957b87b1c7 (diff) | |
| download | brew-06305e621199409f954b34166194e18e610d4e89.tar.bz2 | |
Switch to Minitest
Diffstat (limited to 'Library/Homebrew/test/test_options.rb')
| -rw-r--r-- | Library/Homebrew/test/test_options.rb | 2 |
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 |
