aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tool/lib/core_assertions.rb (renamed from tool/lib/test/unit/core_assertions.rb)2
-rw-r--r--tool/lib/test/unit/assertions.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/tool/lib/test/unit/core_assertions.rb b/tool/lib/core_assertions.rb
index 63478d70b2..c0c69e0ab5 100644
--- a/tool/lib/test/unit/core_assertions.rb
+++ b/tool/lib/core_assertions.rb
@@ -25,7 +25,7 @@ module Test
module CoreAssertions
if defined?(MiniTest)
- require_relative '../../envutil'
+ require_relative 'envutil'
# for ruby core testing
include MiniTest::Assertions
diff --git a/tool/lib/test/unit/assertions.rb b/tool/lib/test/unit/assertions.rb
index 2dfc09cfb4..c61f296da9 100644
--- a/tool/lib/test/unit/assertions.rb
+++ b/tool/lib/test/unit/assertions.rb
@@ -1,6 +1,6 @@
# frozen_string_literal: true
require 'minitest/unit'
-require 'test/unit/core_assertions'
+require_relative '../../core_assertions'
require 'pp'
module Test