diff options
author | Hiroshi SHIBATA <[email protected]> | 2021-09-08 10:35:50 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2021-09-11 08:48:03 +0900 |
commit | 8ec187c091537aa5d25f19eee522aaec12bc7c26 (patch) | |
tree | f514109c18aff8539c911923e91b3024ef2e15c3 /tool/lib/test/unit/assertions.rb | |
parent | c18e9539373a1e90e36e503a51ce5cebb7372e23 (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.rb | 2 |
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 |