diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-07-13 10:07:01 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-07-13 10:07:01 +0000 |
commit | beb1c085d582b4ac187309560eb871dda5bc3c28 (patch) | |
tree | 70a84bbd1128ba33d3101bf9323a6977e6b2c754 /test/io/nonblock | |
parent | 42f1ff127249fe4d86c0f7b7ef2b920cbb71601b (diff) |
use Timeout.timeout
* time: Object#timeout has been deprecated a long time ago, use
Timeout.timeout.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51225 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/io/nonblock')
-rw-r--r-- | test/io/nonblock/test_flush.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/io/nonblock/test_flush.rb b/test/io/nonblock/test_flush.rb index ab54205174..70e65cceed 100644 --- a/test/io/nonblock/test_flush.rb +++ b/test/io/nonblock/test_flush.rb @@ -28,7 +28,7 @@ class TestIONonblock < Test::Unit::TestCase w.flush w << "a" * 4096 result = "" - timeout(10) { + Timeout.timeout(10) { t0 = Thread.new { Thread.pass w.close |