aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/routing_test.rb
diff options
context:
space:
mode:
authorEmil Shakirov <me+github@emil.sh>2019-04-01 03:03:29 +0200
committerRyuta Kamizono <kamipo@gmail.com>2019-04-01 10:03:29 +0900
commit43866b2ca338375b964b0b905ee20f74f9b21b22 (patch)
tree599240dad4a56e847100b5183bc564c4bcd3ade4 /actionpack/test/dispatch/routing_test.rb
parent15501148a29b9a36363a213531156883e5095a2e (diff)
downloadrails-43866b2ca338375b964b0b905ee20f74f9b21b22.tar.gz
rails-43866b2ca338375b964b0b905ee20f74f9b21b22.tar.bz2
rails-43866b2ca338375b964b0b905ee20f74f9b21b22.zip
Fix typo in the value of ENCRYPTED_SIGNED_COOKIE_SALT constant (#35619)
* Fix typo in the value of ENCRYPTED_SIGNED_COOKIE_SALT constant * Fix value of cookie in with authenticated encryption flag off in tests [Emil Shakirov + Ryuta Kamizono]
Diffstat (limited to 'actionpack/test/dispatch/routing_test.rb')
-rw-r--r--actionpack/test/dispatch/routing_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb
index 7b763ec2bd..bdedc1e011 100644
--- a/actionpack/test/dispatch/routing_test.rb
+++ b/actionpack/test/dispatch/routing_test.rb
@@ -5006,7 +5006,7 @@ class FlashRedirectTest < ActionDispatch::IntegrationTest
)
Rotations = ActiveSupport::Messages::RotationConfiguration.new
SIGNED_COOKIE_SALT = "signed cookie"
- ENCRYPTED_SIGNED_COOKIE_SALT = "sigend encrypted cookie"
+ ENCRYPTED_SIGNED_COOKIE_SALT = "signed encrypted cookie"
class KeyGeneratorMiddleware
def initialize(app)