diff options
author | Melissa Xie <me@melissaxie.com> | 2014-12-02 19:19:10 -0500 |
---|---|---|
committer | Melissa Xie <me@melissaxie.com> | 2014-12-02 19:19:10 -0500 |
commit | 3b43d1d8226371722eb9723a7e07404983ed6870 (patch) | |
tree | 2ddb07b5d178b9dd691266943df035fd04ebcae3 /actionpack/test/dispatch/cookies_test.rb | |
parent | 45c6cab2abdf1da8ca7f18dc1333b39d1920992d (diff) | |
download | rails-3b43d1d8226371722eb9723a7e07404983ed6870.tar.gz rails-3b43d1d8226371722eb9723a7e07404983ed6870.tar.bz2 rails-3b43d1d8226371722eb9723a7e07404983ed6870.zip |
Fix "nonexistent" typo in tests
Diffstat (limited to 'actionpack/test/dispatch/cookies_test.rb')
-rw-r--r-- | actionpack/test/dispatch/cookies_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/cookies_test.rb b/actionpack/test/dispatch/cookies_test.rb index 7dc6c37522..5be75a5de6 100644 --- a/actionpack/test/dispatch/cookies_test.rb +++ b/actionpack/test/dispatch/cookies_test.rb @@ -494,7 +494,7 @@ class CookiesTest < ActionController::TestCase assert_nil @response.cookies["user_id"] end - def test_accessing_nonexistant_signed_cookie_should_not_raise_an_invalid_signature + def test_accessing_nonexistent_signed_cookie_should_not_raise_an_invalid_signature get :set_signed_cookie assert_nil @controller.send(:cookies).signed[:non_existant_attribute] end @@ -612,7 +612,7 @@ class CookiesTest < ActionController::TestCase assert_nil @response.cookies["foo"] end - def test_accessing_nonexistant_encrypted_cookie_should_not_raise_invalid_message + def test_accessing_nonexistent_encrypted_cookie_should_not_raise_invalid_message get :set_encrypted_cookie assert_nil @controller.send(:cookies).encrypted[:non_existant_attribute] end |