summaryrefslogtreecommitdiff
path: root/test/unit/keyring_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/keyring_test.rb')
-rw-r--r--test/unit/keyring_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/keyring_test.rb b/test/unit/keyring_test.rb
index c7df63e..48bab29 100644
--- a/test/unit/keyring_test.rb
+++ b/test/unit/keyring_test.rb
@@ -82,8 +82,8 @@ class KeyringTest < ActiveSupport::TestCase
def teststorage
@teststorage ||= Hash.new.tap do |dummy|
- def dummy.set_key(type, value)
- self[type] = value
+ def dummy.set_key(type, hash)
+ self[type] = hash.stringify_keys
end
def dummy.keys