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
commit97f060115768b0c27847dd36698da96aee017984 (patch)
treef6d44838beff251fc6eb89151d93a778ef7ac118 /Library
parentac1fd380759ebe9aa3fe42465cd5d38b209c32b5 (diff)
downloadhomebrew-97f060115768b0c27847dd36698da96aee017984.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)