From 3da850104ea75d6ea6ac6babae3596972129f953 Mon Sep 17 00:00:00 2001 From: Kazuki Yamaguchi Date: Sat, 17 Aug 2024 15:04:00 +0900 Subject: [PATCH] [ruby/openssl] pkey: fix test case for new_raw_*key Method names must start with "test_" to run. https://github.com/ruby/openssl/commit/fed9d09b76 --- test/openssl/test_pkey.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/openssl/test_pkey.rb b/test/openssl/test_pkey.rb index aae6b7e071..0a55364af6 100644 --- a/test/openssl/test_pkey.rb +++ b/test/openssl/test_pkey.rb @@ -188,7 +188,7 @@ class OpenSSL::TestPKey < OpenSSL::PKeyTestCase bob_public_raw end - def raw_initialize + def test_raw_initialize_errors pend "Ed25519 is not implemented" unless openssl?(1, 1, 1) # >= v1.1.1 assert_raise(OpenSSL::PKey::PKeyError) { OpenSSL::PKey.new_raw_private_key("foo123", "xxx") }