aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2010-06-11 11:00:56 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2010-06-11 11:00:56 -0700
commitacad3ba848790c388062bb4ef300e4321e7ad89f (patch)
tree264deda073b33e2a0ac7b12e645308dc5d902cfa /actionpack
parented61c3b64012f4e17eb25d42d5b962e13c69b47a (diff)
downloadrails-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.rb2
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