summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2025-08-15 11:13:11 -0700
committerGitHub <noreply@github.com>2025-08-15 11:13:11 -0700
commit2f2e2bd7cd82e209dbb54a36dc4465045dd0b434 (patch)
tree9b9e49884f5359691ea409c4f08723b2012effa8
parent97cffb95e35c8e5b6fe6d76a80dc1d4d775d8094 (diff)
Relax a delta for an unstable test (#14246)
https://github.com/ruby/ruby/actions/runs/16995978143/job/48186652826?pr=14244
-rw-r--r--test/-ext-/gvl/test_last_thread.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/-ext-/gvl/test_last_thread.rb b/test/-ext-/gvl/test_last_thread.rb
index f63d98aab1..bcda0e3385 100644
--- a/test/-ext-/gvl/test_last_thread.rb
+++ b/test/-ext-/gvl/test_last_thread.rb
@@ -15,7 +15,7 @@ class TestLastThread < Test::Unit::TestCase
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