summaryrefslogtreecommitdiff
path: root/test/openssl/utils.rb
diff options
context:
space:
mode:
authorJun Aruga <[email protected]>2023-04-13 17:28:27 +0200
committerKazuki Yamaguchi <[email protected]>2023-06-19 01:57:09 +0900
commit920bc71284f417f9044b0dc1822b1d29a8fc61e5 (patch)
tree888df0334abb3b6caf1342623e7342360c246f2a /test/openssl/utils.rb
parent2a4834057b30a26c38ece3961b370c0b2ee59380 (diff)
[ruby/openssl] Drop a common logic disabling the FIPS mode in the tests.
We want to run the unit tests in the FIPS mode too. https://github.com/ruby/openssl/commit/ab92baff34
Diffstat (limited to 'test/openssl/utils.rb')
-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 e474fccaf8..f00084ffd3 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