From e514596c612455c1a099e15e90bde9141420a589 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Fri, 15 Aug 2025 11:12:43 -0700 Subject: [PATCH] Relax a delta for an unstable test https://github.com/ruby/ruby/actions/runs/16995978143/job/48186652826?pr=14244 --- test/-ext-/gvl/test_last_thread.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/-ext-/gvl/test_last_thread.rb b/test/-ext-/gvl/test_last_thread.rb index f63d98aab16f02..bcda0e33856c51 100644 --- a/test/-ext-/gvl/test_last_thread.rb +++ b/test/-ext-/gvl/test_last_thread.rb @@ -15,7 +15,7 @@ def test_last_thread t1 = Time.now t = t1 - t0 - assert_in_delta(1.0, t, 0.18) + assert_in_delta(1.0, t, 0.8) end; end end