diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2014-12-02 17:39:50 -0700 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2014-12-02 17:39:50 -0700 |
commit | 930d0853f4916a44445d24020018f976c6a9f4e8 (patch) | |
tree | a43e2cc54835af5167d3b7c593c67ba89e3ac177 /actionpack/test | |
parent | f987609ad6afa4ddd3208621b28de9c2d6ee898e (diff) | |
parent | 3b43d1d8226371722eb9723a7e07404983ed6870 (diff) | |
download | rails-930d0853f4916a44445d24020018f976c6a9f4e8.tar.gz rails-930d0853f4916a44445d24020018f976c6a9f4e8.tar.bz2 rails-930d0853f4916a44445d24020018f976c6a9f4e8.zip |
Merge pull request #17889 from mxie/mx-fix-nonexistent-typo
Fix "nonexistent" typo in tests
Diffstat (limited to 'actionpack/test')
-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 |