diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2025-09-02 16:21:07 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2025-09-02 16:21:08 -0700 |
| commit | de6df7508de397138e3a4d16469e7f35a8fe1b1e (patch) | |
| tree | 2dea8ea824866fdd2d2354b5062231aaf516ba34 | |
| parent | 85fd5d5ab5d885347e367b24027cfa4ac215774b (diff) | |
test_io_wait.rb: Increase a timeout for a flaky test
like 68682a5d2b2
https://github.com/ruby/ruby/actions/runs/17417763247/job/49449895757?pr=14433
| -rw-r--r-- | test/io/wait/test_io_wait.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/io/wait/test_io_wait.rb b/test/io/wait/test_io_wait.rb index 0e011a473f..445363714c 100644 --- a/test/io/wait/test_io_wait.rb +++ b/test/io/wait/test_io_wait.rb @@ -114,7 +114,7 @@ class TestIOWait < Test::Unit::TestCase ret = nil assert_nothing_raised(Timeout::Error) do q.push(true) - t = EnvUtil.apply_timeout_scale(0.1) + t = EnvUtil.apply_timeout_scale(1) Timeout.timeout(t) { ret = @r.wait_readable } end assert_equal @r, ret |
