summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/openssl/test_pkey_ec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/openssl/test_pkey_ec.rb b/test/openssl/test_pkey_ec.rb
index 302259b242..712507f609 100644
--- a/test/openssl/test_pkey_ec.rb
+++ b/test/openssl/test_pkey_ec.rb
@@ -16,7 +16,7 @@ class OpenSSL::TestEC < OpenSSL::TestCase
group = OpenSSL::PKey::EC::Group.new(curve)
key = OpenSSL::PKey::EC.new(group)
- key.generate_key
+ key.generate_key!
@groups << group
@keys << key
@@ -127,7 +127,7 @@ class OpenSSL::TestEC < OpenSSL::TestCase
def test_dh_compute_key
for key in @keys
k = OpenSSL::PKey::EC.new(key.group)
- k.generate_key
+ k.generate_key!
puba = key.public_key
pubb = k.public_key