aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-07-17 18:19:09 +0100
committerPratik Naik <pratiknaik@gmail.com>2008-07-17 18:19:09 +0100
commit99930d499e424f4560b371412e05d10476216ece (patch)
tree65a6a7de6131fb2ffa22ce429dae1c339aa8bc4e /actionpack
parent7e8aee7e6cbd23c1eb18bec1869465e923915e7a (diff)
downloadrails-99930d499e424f4560b371412e05d10476216ece.tar.gz
rails-99930d499e424f4560b371412e05d10476216ece.tar.bz2
rails-99930d499e424f4560b371412e05d10476216ece.zip
Fix symbol cookie test
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/controller/cookie_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/cookie_test.rb b/actionpack/test/controller/cookie_test.rb
index b45fbb17d3..5a6fb49861 100644
--- a/actionpack/test/controller/cookie_test.rb
+++ b/actionpack/test/controller/cookie_test.rb
@@ -60,7 +60,7 @@ class CookieTest < Test::Unit::TestCase
end
def test_setting_cookie_for_fourteen_days_with_symbols
- get :authenticate_for_fourteen_days
+ get :authenticate_for_fourteen_days_with_symbols
assert_equal [ CGI::Cookie::new("name" => "user_name", "value" => "david", "expires" => Time.local(2005, 10, 10)) ], @response.headers["cookie"]
end