summaryrefslogtreecommitdiff
path: root/tool/lib/test/unit/testcase.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2021-09-08 10:35:50 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-09-11 08:48:03 +0900
commit8ec187c091537aa5d25f19eee522aaec12bc7c26 (patch)
treef514109c18aff8539c911923e91b3024ef2e15c3 /tool/lib/test/unit/testcase.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/testcase.rb')
-rw-r--r--tool/lib/test/unit/testcase.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/lib/test/unit/testcase.rb b/tool/lib/test/unit/testcase.rb
index 61877803de..bbba87f63b 100644
--- a/tool/lib/test/unit/testcase.rb
+++ b/tool/lib/test/unit/testcase.rb
@@ -111,7 +111,7 @@ module Test
# end
# end
#
- # class MiniTest::Unit::TestCase
+ # class Test::Unit::Runner::TestCase
# include MyMinitestPlugin
# end
@@ -230,7 +230,7 @@ module Test
def io
@__io__ = true
- MiniTest::Unit.output
+ Test::Unit::Runner.output
end
##