diff options
author | Yehuda Katz <wycats@gmail.com> | 2009-10-15 16:03:16 -0700 |
---|---|---|
committer | Yehuda Katz <wycats@gmail.com> | 2009-10-15 16:03:30 -0700 |
commit | b71f83c9ccd0ecd1a047710f7b39309f51677119 (patch) | |
tree | 022af8bc107cf76a1899d9940131b1b38ea7d72c | |
parent | 97296b11e2c4011ea5522c4de0153f7ffa6a47ae (diff) | |
download | rails-b71f83c9ccd0ecd1a047710f7b39309f51677119.tar.gz rails-b71f83c9ccd0ecd1a047710f7b39309f51677119.tar.bz2 rails-b71f83c9ccd0ecd1a047710f7b39309f51677119.zip |
Work around apparent bug in 1.9
-rw-r--r-- | actionpack/test/abstract_unit.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb index 0d65bdb5b9..f7a1564f90 100644 --- a/actionpack/test/abstract_unit.rb +++ b/actionpack/test/abstract_unit.rb @@ -176,8 +176,8 @@ class ::ApplicationController < ActionController::Base end module ActionController - class << Routing - def possible_controllers + module Routing + def self.possible_controllers @@possible_controllers ||= [] end end |