diff options
author | Joshua Peek <josh@joshpeek.com> | 2010-01-16 17:21:46 -0600 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2010-01-16 17:22:27 -0600 |
commit | d2d4acf02793580e0f0c1bc380389527325b6254 (patch) | |
tree | c7749a89bda18f9367a31048f5a2e217dd3eae25 /actionpack/test/dispatch/session/cookie_store_test.rb | |
parent | 8d87c80c19b7f0c0966fcfd52e7a6ed99d347a36 (diff) | |
download | rails-d2d4acf02793580e0f0c1bc380389527325b6254.tar.gz rails-d2d4acf02793580e0f0c1bc380389527325b6254.tar.bz2 rails-d2d4acf02793580e0f0c1bc380389527325b6254.zip |
Cookies middleware
Diffstat (limited to 'actionpack/test/dispatch/session/cookie_store_test.rb')
-rw-r--r-- | actionpack/test/dispatch/session/cookie_store_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/session/cookie_store_test.rb b/actionpack/test/dispatch/session/cookie_store_test.rb index ab7b9bc31b..d2c1758af1 100644 --- a/actionpack/test/dispatch/session/cookie_store_test.rb +++ b/actionpack/test/dispatch/session/cookie_store_test.rb @@ -137,7 +137,7 @@ class CookieStoreTest < ActionController::IntegrationTest with_test_route_set do get '/no_session_access' assert_response :success - assert_equal "", headers['Set-Cookie'] + assert_equal nil, headers['Set-Cookie'] end end @@ -147,7 +147,7 @@ class CookieStoreTest < ActionController::IntegrationTest "fef868465920f415f2c0652d6910d3af288a0367" get '/no_session_access' assert_response :success - assert_equal "", headers['Set-Cookie'] + assert_equal nil, headers['Set-Cookie'] end end |