summaryrefslogtreecommitdiff
path: root/tool/lib/test/unit/assertions.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2021-09-08 10:35:50 +0900
committerHiroshi SHIBATA <[email protected]>2021-09-11 08:48:03 +0900
commit8ec187c091537aa5d25f19eee522aaec12bc7c26 (patch)
treef514109c18aff8539c911923e91b3024ef2e15c3 /tool/lib/test/unit/assertions.rb
parentc18e9539373a1e90e36e503a51ce5cebb7372e23 (diff)
Replace MiniTest::Unit to Test::Unit::Runner
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4813
Diffstat (limited to 'tool/lib/test/unit/assertions.rb')
-rw-r--r--tool/lib/test/unit/assertions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lib/test/unit/assertions.rb b/tool/lib/test/unit/assertions.rb
index 29ace55d1d..711d8a6bc3 100644
--- a/tool/lib/test/unit/assertions.rb
+++ b/tool/lib/test/unit/assertions.rb
@@ -596,7 +596,7 @@ module Test
# Takes a block and wraps it with the runner's shared mutex.
def synchronize
- MiniTest::Unit.runner.synchronize do
+ Test::Unit::Runner.runner.synchronize do
yield
end
end