aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorStan Lo <stan001212@gmail.com>2023-08-20 11:40:42 +0100
committergit <svn-admin@ruby-lang.org>2023-08-20 10:40:55 +0000
commit7c226291d344c29236d51c604f885af05e7f1add (patch)
tree08d5181f45cb2cb87010c8ffe49cf5b9d7dde904 /test
parent35442005132e60a728b59f0811da10fba95a851e (diff)
downloadruby-7c226291d344c29236d51c604f885af05e7f1add.tar.gz
[ruby/reline] Remove Timeout usage
(https://github.com/ruby/reline/pull/580) Timeout's implementation relies on Thread, which would conflict with `ruby/debug`'s thread-freezing implementation and has casued issues like - ruby/debug#877 - ruby/debug#934 - ruby/debug#1000 This commit avoids the issue by completely removing the use of Timeout. https://github.com/ruby/reline/commit/d4f0cd3fe1
Diffstat (limited to 'test')
-rw-r--r--test/reline/yamatanooroti/test_rendering.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/reline/yamatanooroti/test_rendering.rb b/test/reline/yamatanooroti/test_rendering.rb
index c72e47fd38..8ac0c0c096 100644
--- a/test/reline/yamatanooroti/test_rendering.rb
+++ b/test/reline/yamatanooroti/test_rendering.rb
@@ -3,7 +3,7 @@ require 'reline'
begin
require 'yamatanooroti'
- class Reline::TestRendering < Yamatanooroti::TestCase
+ class Reline::RenderingTest < Yamatanooroti::TestCase
def setup
@pwd = Dir.pwd
suffix = '%010d' % Random.rand(0..65535)