diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-05-19 09:08:39 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-05-19 09:25:11 +0900 |
commit | 74600917a8eeff90ba28b857030052c5a4687155 (patch) | |
tree | d4de91a1d1c94f9cff921fc8dd95c14258b9c018 | |
parent | b26ddfd72f6acd33c44b764bfe78318b720fe3c5 (diff) |
[ruby/openssl] Revert "Skip OpenSSL::TestHMAC#test_dup when running with RHEL9"
This reverts commit https://github.com/ruby/openssl/commit/9493d4a3bb26.
https://github.com/ruby/openssl/commit/b880a023dd
-rw-r--r-- | test/openssl/test_hmac.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/openssl/test_hmac.rb b/test/openssl/test_hmac.rb index b62d928d86..3cb707448a 100644 --- a/test/openssl/test_hmac.rb +++ b/test/openssl/test_hmac.rb @@ -21,9 +21,6 @@ class OpenSSL::TestHMAC < OpenSSL::TestCase end def test_dup - require "etc" - pend "[Bug #19386] OpenSSL 3.0.1 of RHEL9 is not working this test" if Etc.uname[:release] =~ /el9/ - h1 = OpenSSL::HMAC.new("KEY", "MD5") h1.update("DATA") h = h1.dup |