mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix minor CodeClimate issue
This commit is contained in:
parent
ab08f33f31
commit
21b975cfd9
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ class MessageEncryptorTest < ActiveSupport::TestCase
|
|||
end
|
||||
|
||||
def secrets
|
||||
@secrets ||= Hash.new { |h,k| h[k] = SecureRandom.random_bytes(32) }
|
||||
@secrets ||= Hash.new { |h, k| h[k] = SecureRandom.random_bytes(32) }
|
||||
end
|
||||
|
||||
def munge(base64_string)
|
||||
|
|
Loading…
Reference in a new issue