summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-04-29 19:23:21 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-05-08 14:13:29 +0900
commit4e436e605c7d3dd853eaf72bd3ac45d84d1c48e6 (patch)
treecad45edb0bf46e8a94571db7bf9a6083cf782f91
parentab1b31ffe086dbc2aa780ae914f0eae1d7af8b5c (diff)
[rubygems/rubygems] Removed needless setup to clear credential
https://github.com/rubygems/rubygems/commit/4f694f4fb7
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3092
-rw-r--r--test/rubygems/test_gem_commands_signout_command.rb2
1 files changed, 1 insertions, 1 deletions
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