aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_formula_installer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/test/test_formula_installer.rb')
-rw-r--r--Library/Homebrew/test/test_formula_installer.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/test_formula_installer.rb b/Library/Homebrew/test/test_formula_installer.rb
index 1cdf54575..b592b6dfa 100644
--- a/Library/Homebrew/test/test_formula_installer.rb
+++ b/Library/Homebrew/test/test_formula_installer.rb
@@ -81,12 +81,12 @@ class InstallTests < Homebrew::TestCase
def test_not_poured_from_bottle_when_compiler_specified
assert_nil ARGV.cc
- cc_arg = "--cc=llvm-gcc"
+ cc_arg = "--cc=clang"
ARGV << cc_arg
begin
temporary_install(TestballBottle.new) do |f|
tab = Tab.for_formula(f)
- assert_equal "llvm", tab.compiler
+ assert_equal "clang", tab.compiler
end
ensure
ARGV.delete_if { |x| x == cc_arg }