aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-12-03 22:23:14 -0600
committerJack Nagel2013-12-03 22:23:14 -0600
commitd18a4001b408d3d4aeec4819c398348d2a1d40eb (patch)
tree35019a43c30514c62691578e9fe460a07f2500c1 /Library
parent65a00e213b15b503375db43adee048ffabe0464a (diff)
downloadbrew-d18a4001b408d3d4aeec4819c398348d2a1d40eb.tar.bz2
Adjust tests for ac1fd380759ebe9aa3fe42465cd5d38b209c32b5
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/test_compiler_selector.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Homebrew/test/test_compiler_selector.rb b/Library/Homebrew/test/test_compiler_selector.rb
index dbe6fe9f6..9e80bf084 100644
--- a/Library/Homebrew/test/test_compiler_selector.rb
+++ b/Library/Homebrew/test/test_compiler_selector.rb
@@ -3,8 +3,11 @@ require 'compilers'
class CompilerSelectorTests < Test::Unit::TestCase
class Double
+ attr_reader :name
+
def initialize
@failures = []
+ @name = "double"
end
def <<(cc)