aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-09-27 16:23:24 -0500
committerJack Nagel2012-09-27 16:24:04 -0500
commit3d97092ab39ba0631ae9e73af80643e5ebf97a64 (patch)
tree06317df7ae690910f3ec1a0d994b0f39d6b41556 /Library
parentd02c001f96453cf531e8469cd9236a30235c8b4d (diff)
downloadhomebrew-3d97092ab39ba0631ae9e73af80643e5ebf97a64.tar.bz2
Adjust test expectation for 'LD'
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/test_ENV.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_ENV.rb b/Library/Homebrew/test/test_ENV.rb
index 5b8721747..8e69cb6f0 100644
--- a/Library/Homebrew/test/test_ENV.rb
+++ b/Library/Homebrew/test/test_ENV.rb
@@ -23,7 +23,7 @@ class EnvironmentTests < Test::Unit::TestCase
def test_switching_compilers
ENV.llvm
ENV.clang
- assert_equal ENV['LD'], ENV['CC']
+ assert_nil ENV['LD']
assert_equal ENV['OBJC'], ENV['CC']
end
end