aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-03-27 10:22:21 +0100
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-05-08 07:38:50 +0900
commitb72c56681ee9f7df26e485da413349d9628402e9 (patch)
tree28e5db8d868a4fdec8588366213e8460a1e90254 /test
parent56c6d520a06c9bb502660e666358f89fe676860f (diff)
downloadruby-b72c56681ee9f7df26e485da413349d9628402e9.tar.gz
[rubygems/rubygems] Use newer module Minitest name
https://github.com/rubygems/rubygems/commit/2890622479
Diffstat (limited to 'test')
-rw-r--r--test/rubygems/test_gem_commands_open_command.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rubygems/test_gem_commands_open_command.rb b/test/rubygems/test_gem_commands_open_command.rb
index 33836f7498..3c9a26a549 100644
--- a/test/rubygems/test_gem_commands_open_command.rb
+++ b/test/rubygems/test_gem_commands_open_command.rb
@@ -26,7 +26,7 @@ class TestGemCommandsOpenCommand < Gem::TestCase
gem 'foo', '1.0.0'
spec = gem 'foo', '1.0.1'
- mock = MiniTest::Mock.new
+ mock = Minitest::Mock.new
mock.expect(:call, true, [spec.full_gem_path])
Dir.stub(:chdir, mock) do