ruby-changes:51146
From: kazu <ko1@a...>
Date: Tue, 8 May 2018 09:00:19 +0900 (JST)
Subject: [ruby-changes:51146] kazu:r63353 (trunk): Modify spaces [ci skip]
kazu 2018-05-08 09:00:12 +0900 (Tue, 08 May 2018) New Revision: 63353 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=63353 Log: Modify spaces [ci skip] Modified files: trunk/test/ruby/test_io.rb Index: test/ruby/test_io.rb =================================================================== --- test/ruby/test_io.rb (revision 63352) +++ test/ruby/test_io.rb (revision 63353) @@ -1859,7 +1859,6 @@ class TestIO < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_io.rb#L1859 def test_pos make_tempfile {|t| - open(t.path, IO::RDWR|IO::CREAT|IO::TRUNC, 0600) do |f| f.write "Hello" assert_equal(5, f.pos) @@ -2258,13 +2257,13 @@ class TestIO < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_io.rb#L2257 def test_reopen_inherit mkcdtmpdir { - system(EnvUtil.rubybin, '-e', <<"End") + system(EnvUtil.rubybin, '-e', <<-"End") f = open("out", "w") STDOUT.reopen(f) STDERR.reopen(f) system(#{EnvUtil.rubybin.dump}, '-e', 'STDOUT.print "out"') system(#{EnvUtil.rubybin.dump}, '-e', 'STDERR.print "err"') -End + End assert_equal("outerr", File.read("out")) } end @@ -2565,7 +2564,6 @@ End https://github.com/ruby/ruby/blob/trunk/test/ruby/test_io.rb#L2564 return unless defined?(Fcntl::F_GETFL) make_tempfile {|t| - fd = IO.sysopen(t.path, "w") assert_kind_of(Integer, fd) %w[r r+ w+ a+].each do |mode| @@ -2849,7 +2847,7 @@ __END__ https://github.com/ruby/ruby/blob/trunk/test/ruby/test_io.rb#L2847 end def test_fcntl_lock_linux - pad=0 + pad = 0 Tempfile.create(self.class.name) do |f| r, w = IO.pipe pid = fork do -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/