mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Module lookup issue on flash_test using ruby 1.9 solved [#3716 status:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
This commit is contained in:
parent
eb67532bc1
commit
5a6596787b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue