diff options
author | Sam Elliott and Santiago Pastorino <lenary+santiago@wyeworks.com> | 2010-01-17 01:39:30 -0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-01-17 16:57:14 +0100 |
commit | 5a6596787b9489c62d149b61935057cee3dcf61a (patch) | |
tree | ecf40aaa4639a8dc277b66f76685cb96d1788ad6 /actionpack | |
parent | eb67532bc1c1ce5c494b71b980c04c8aa83efb74 (diff) | |
download | rails-5a6596787b9489c62d149b61935057cee3dcf61a.tar.gz rails-5a6596787b9489c62d149b61935057cee3dcf61a.tar.bz2 rails-5a6596787b9489c62d149b61935057cee3dcf61a.zip |
Module lookup issue on flash_test using ruby 1.9 solved [#3716 status:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/flash_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/flash_test.rb b/actionpack/test/controller/flash_test.rb index 85a2e7f44b..3c651ebebc 100644 --- a/actionpack/test/controller/flash_test.rb +++ b/actionpack/test/controller/flash_test.rb @@ -220,7 +220,7 @@ class FlashIntegrationTest < ActionController::IntegrationTest def with_test_route_set with_routing do |set| set.draw do |map| - match ':action', :to => ActionDispatch::Session::CookieStore.new(TestController, :key => SessionKey, :secret => SessionSecret) + match ':action', :to => ActionDispatch::Session::CookieStore.new(FlashIntegrationTest::TestController, :key => FlashIntegrationTest::SessionKey, :secret => FlashIntegrationTest::SessionSecret) end yield end |