summaryrefslogtreecommitdiff
path: root/test/ruby/test_notimp.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-18 07:10:56 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-18 07:10:56 +0000
commited82d1388f92757ec8f423ef859cff2b54b42bfc (patch)
treeeb81fca22b33651d89b5f1d96a8b0302c275973e /test/ruby/test_notimp.rb
parente4ef5b282be199cd6e20600610db44fd3920ad40 (diff)
Remove useless sleep
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_notimp.rb')
-rw-r--r--test/ruby/test_notimp.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_notimp.rb b/test/ruby/test_notimp.rb
index 0ce0fc48a7..2a5a12a5f3 100644
--- a/test/ruby/test_notimp.rb
+++ b/test/ruby/test_notimp.rb
@@ -23,7 +23,7 @@ class TestNotImplement < Test::Unit::TestCase
def test_call_fork
pid = nil
Timeout.timeout(1) {
- pid = fork {sleep}
+ pid = fork {}
Process.wait pid
pid = nil
}