aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-03 12:50:57 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-03 12:50:57 +0000
commit8731a38bfff493437f831ad86c07266ae615aad4 (patch)
treeda989fb73506ca5ff41688be9ad9d64a15081f6f
parent88f1b8cf0c286d5a499d0832cde5ff6be4105d89 (diff)
downloadruby-8731a38bfff493437f831ad86c07266ae615aad4.tar.gz
* test/ruby/test_process.rb: clean up a garbage character.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33618 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/ruby/test_process.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index a731dee99d..84e5f13bb1 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1326,7 +1326,7 @@ class TestProcess < Test::Unit::TestCase
def test_popen_cloexec
return unless defined? Fcntl::FD_CLOEXEC
- IO.popen([RUBY, "-e", ""]) {|io|
+ IO.popen([RUBY, "-e", ""]) {|io|
assert(io.close_on_exec?)
}
end