diff options
author | MSP-Greg <[email protected]> | 2022-07-25 21:43:47 -0500 |
---|---|---|
committer | Kazuki Yamaguchi <[email protected]> | 2022-10-17 16:35:35 +0900 |
commit | c865e8d161f40c6e9cce411c92e313a91b14124e (patch) | |
tree | 5a5b9dddd767c54090beb9bbbb1579b42ffe09dc | |
parent | 5dae78b9d36be7e2adfb5f9cad78bb10d641e40a (diff) |
[ruby/openssl] [CI] TestHMAC#test_dup - remove 'pend' for OpenSSL 3
https://github.com/ruby/openssl/commit/626b0434a6
-rw-r--r-- | test/openssl/test_hmac.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/openssl/test_hmac.rb b/test/openssl/test_hmac.rb index 47cb3718df..2f53a813e1 100644 --- a/test/openssl/test_hmac.rb +++ b/test/openssl/test_hmac.rb @@ -21,7 +21,6 @@ class OpenSSL::TestHMAC < OpenSSL::TestCase end def test_dup - pend "HMAC#initialize_copy is currently broken on OpenSSL 3.0.0" if openssl?(3, 0, 0) h1 = OpenSSL::HMAC.new("KEY", "MD5") h1.update("DATA") h = h1.dup |