Fix minor CodeClimate issue

This commit is contained in:
dixpac 2017-09-25 14:00:07 +02:00
parent ab08f33f31
commit 21b975cfd9
1 changed files with 1 additions and 1 deletions

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)