diff options
Diffstat (limited to 'Library/Homebrew/test/test_options.rb')
| -rw-r--r-- | Library/Homebrew/test/test_options.rb | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/test/test_options.rb b/Library/Homebrew/test/test_options.rb index e10a7e969..3f7d8d6c8 100644 --- a/Library/Homebrew/test/test_options.rb +++ b/Library/Homebrew/test/test_options.rb @@ -70,15 +70,15 @@ class OptionsTests < Homebrew::TestCase    end    def test_union_returns_options -    assert_instance_of Options, (@options + Options.new) +    assert_instance_of Options, @options + Options.new    end    def test_difference_returns_options -    assert_instance_of Options, (@options - Options.new) +    assert_instance_of Options, @options - Options.new    end    def test_shovel_returns_self -    assert_same @options, (@options << Option.new("foo")) +    assert_same @options, @options << Option.new("foo")    end    def test_as_flags  | 
