summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2023-08-29 18:26:19 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-09-06 19:51:53 +0900
commit5ba480e4eab7f0660a11bb21044aa4077aedf7d1 (patch)
treecfe2a020c024cf20d8692eb3a7d83bae919173d9
parent3fd90c0158f8170ad11c8a99354bb3347c7cc121 (diff)
Use the test-unit-ruby-core gem for Test::Unit::CoreAssertions
test/lib/core_assertions.rb and its dependencies are now packaged in the gem test-unit-ruby-core. Let's use it instead.
-rw-r--r--test/openssl/utils.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/openssl/utils.rb b/test/openssl/utils.rb
index 269a111dbf..3856bea875 100644
--- a/test/openssl/utils.rb
+++ b/test/openssl/utils.rb
@@ -5,15 +5,10 @@ rescue LoadError
end
require "test/unit"
+require "core_assertions"
require "tempfile"
require "socket"
-begin
- require_relative "../lib/core_assertions"
-rescue LoadError
- # for ruby/ruby repository
-end
-
if defined?(OpenSSL)
module OpenSSL::TestUtils