1
0
Fork 0
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:
dixpac 2017-09-25 14:00:07 +02:00
parent ab08f33f31
commit 21b975cfd9

View file

@ -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)