aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJun Aruga <jaruga@redhat.com>2023-04-13 17:28:27 +0200
committerJun Aruga <jaruga@redhat.com>2023-06-01 12:18:46 +0200
commitab92baff34097fbb9e74815eab1b72185b250cc6 (patch)
treeff7615267bec129cc3f07567fe0da343cf16d808
parent5ff4a3162182c6adf1c780ccaf9ce32895f87a6c (diff)
downloadruby-openssl-ab92baff34097fbb9e74815eab1b72185b250cc6.tar.gz
Drop a common logic disabling the FIPS mode in the tests.
We want to run the unit tests in the FIPS mode too.
-rw-r--r--test/openssl/utils.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/openssl/utils.rb b/test/openssl/utils.rb
index e474fcca..f00084ff 100644
--- a/test/openssl/utils.rb
+++ b/test/openssl/utils.rb
@@ -1,11 +1,6 @@
# frozen_string_literal: true
begin
require "openssl"
-
- # Disable FIPS mode for tests for installations
- # where FIPS mode would be enabled by default.
- # Has no effect on all other installations.
- OpenSSL.fips_mode=false
rescue LoadError
end