From 4b5f1fef2444cda1aff5b527bde2f8677ba776fa Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 30 May 2013 22:58:16 -0700 Subject: [PATCH] Fix 1.9ism --- spec/rbnacl/hash_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/rbnacl/hash_spec.rb b/spec/rbnacl/hash_spec.rb index d4c445a..aef4046 100644 --- a/spec/rbnacl/hash_spec.rb +++ b/spec/rbnacl/hash_spec.rb @@ -83,7 +83,7 @@ let(:reference_key) { hex2bytes reference_key_hex } it "calculates keyed hashes correctly" do - Crypto::Hash.blake2b(reference_string, key: reference_key).should eq reference_string_hash + Crypto::Hash.blake2b(reference_string, :key => reference_key).should eq reference_string_hash end end end