diff options
author | Mike Gunderloy <MikeG1@larkfarm.com> | 2009-02-12 10:40:14 -0600 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2009-02-12 17:47:52 +0100 |
commit | b1d41bdfb06cb5f606f515965316a348d9bc9b47 (patch) | |
tree | e41ed2a027a314fc7e80a782a25ddfcc498cc057 | |
parent | 7ed2e6c463071081d9be55b794477adafb1457d3 (diff) | |
download | rails-b1d41bdfb06cb5f606f515965316a348d9bc9b47.tar.gz rails-b1d41bdfb06cb5f606f515965316a348d9bc9b47.tar.bz2 rails-b1d41bdfb06cb5f606f515965316a348d9bc9b47.zip |
Remove space from the test name [#1953 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
-rw-r--r-- | actionpack/test/controller/session/test_session_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/session/test_session_test.rb b/actionpack/test/controller/session/test_session_test.rb index 83103be3ec..de6539e1cc 100644 --- a/actionpack/test/controller/session/test_session_test.rb +++ b/actionpack/test/controller/session/test_session_test.rb @@ -33,7 +33,7 @@ class ActionController::TestSessionTest < ActiveSupport::TestCase assert_equal('value', session[:key]) end - def test_calling_delete_removes item + def test_calling_delete_removes_item session = ActionController::TestSession.new session[:key] = 'value' assert_equal('value', session[:key]) |