diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2010-06-11 11:00:56 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-06-11 11:00:56 -0700 |
commit | acad3ba848790c388062bb4ef300e4321e7ad89f (patch) | |
tree | 264deda073b33e2a0ac7b12e645308dc5d902cfa /actionpack | |
parent | ed61c3b64012f4e17eb25d42d5b962e13c69b47a (diff) | |
download | rails-acad3ba848790c388062bb4ef300e4321e7ad89f.tar.gz rails-acad3ba848790c388062bb4ef300e4321e7ad89f.tar.bz2 rails-acad3ba848790c388062bb4ef300e4321e7ad89f.zip |
Ruby 1.9.1 compat: constant lookup
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 01c8fd90a5..5c636cbab8 100644 --- a/actionpack/test/controller/flash_test.rb +++ b/actionpack/test/controller/flash_test.rb @@ -248,7 +248,7 @@ class FlashIntegrationTest < ActionController::IntegrationTest with_routing do |set| set.draw do |map| match ':action', :to => ActionDispatch::Session::CookieStore.new( - FlashIntegrationTest::TestController, :key => SessionKey, :secret => SessionSecret + FlashIntegrationTest::TestController, :key => FlashIntegrationTest::SessionKey, :secret => FlashIntegrationTest::SessionSecret ) end yield |