summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-04-27 21:29:40 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-05-08 14:13:29 +0900
commit74867e2dc1b68ca7831876991c6f34c6309e018d (patch)
tree8a09ecacfcc1613da5d9ff3b1c6e3ef0af9d910e /test
parented1e4504a42726ba574dcc3ced0888c36730cf2f (diff)
[rubygems/rubygems] Fix super weird code style
https://github.com/rubygems/rubygems/commit/f1a5815896
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3092
Diffstat (limited to 'test')
-rw-r--r--test/rubygems/test_gem_commands_setup_command.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rubygems/test_gem_commands_setup_command.rb b/test/rubygems/test_gem_commands_setup_command.rb
index 01a33496ec..140e75d684 100644
--- a/test/rubygems/test_gem_commands_setup_command.rb
+++ b/test/rubygems/test_gem_commands_setup_command.rb
@@ -23,8 +23,8 @@ class TestGemCommandsSetupCommand < Gem::TestCase
FileUtils.mkdir_p 'bin'
FileUtils.mkdir_p 'lib/rubygems/ssl_certs/rubygems.org'
- File.open 'bin/gem', 'w' do
- |io| io.puts '# gem'
+ File.open 'bin/gem', 'w' do |io|
+ io.puts '# gem'
end
File.open 'lib/rubygems.rb', 'w' do |io|