aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_bottle_hooks.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/test/test_bottle_hooks.rb')
-rw-r--r--Library/Homebrew/test/test_bottle_hooks.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/test_bottle_hooks.rb b/Library/Homebrew/test/test_bottle_hooks.rb
index 9e28784c2..abc3d5f4e 100644
--- a/Library/Homebrew/test/test_bottle_hooks.rb
+++ b/Library/Homebrew/test/test_bottle_hooks.rb
@@ -17,14 +17,14 @@ class BottleHookTests < Test::Unit::TestCase
Homebrew::Hooks::Bottles.setup_formula_has_bottle do |f|
f.some_random_method
end
- assert_equal true, @fi.pour_bottle?
+ assert @fi.pour_bottle?
end
def test_has_no_bottle
Homebrew::Hooks::Bottles.setup_formula_has_bottle do |f|
!f.some_random_method
end
- assert_equal false, @fi.pour_bottle?
+ assert !@fi.pour_bottle?
end
def test_pour_formula_bottle