From 4e436e605c7d3dd853eaf72bd3ac45d84d1c48e6 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Wed, 29 Apr 2020 19:23:21 +0900 Subject: [PATCH] [rubygems/rubygems] Removed needless setup to clear credential https://github.com/rubygems/rubygems/commit/4f694f4fb7 --- test/rubygems/test_gem_commands_signout_command.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rubygems/test_gem_commands_signout_command.rb b/test/rubygems/test_gem_commands_signout_command.rb index 9a47dafe7c..2bb782e6f0 100644 --- a/test/rubygems/test_gem_commands_signout_command.rb +++ b/test/rubygems/test_gem_commands_signout_command.rb @@ -8,7 +8,7 @@ class TestGemCommandsSignoutCommand < Gem::TestCase def setup super - File.delete Gem.configuration.credentials_path if File.exist?(Gem.configuration.credentials_path) + @cmd = Gem::Commands::SignoutCommand.new end