summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-05-19 09:08:39 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-05-19 09:25:11 +0900
commit74600917a8eeff90ba28b857030052c5a4687155 (patch)
treed4de91a1d1c94f9cff921fc8dd95c14258b9c018 /test
parentb26ddfd72f6acd33c44b764bfe78318b720fe3c5 (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
Diffstat (limited to 'test')
-rw-r--r--test/openssl/test_hmac.rb3
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