summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2025-06-19 16:44:30 +0900
committerHiroshi SHIBATA <[email protected]>2025-06-19 16:49:28 +0900
commitd4ed7eb1ade9cdd14e0e3b164d5f66981eba29d3 ()
tree1fb39c0967aec63900c319d13abf51db6c3cc7ba
parent6929542aa9b3589efe755b9105ca04e3f9bee58d (diff)
Relax delta value
https://.com/ruby/ruby/actions/runs/15751511003/job/44397451542?pr=13649 ``` 1) Failure: TestLastThread#test_last_thread [/Users/runner/work/ruby/ruby/src/test/-ext-/gvl/test_last_thread.rb:18]: Expected |1.0 - 1.167141| (0.16714099999999998) to be <= 0.16. ```
-rw-r--r--test/-ext-/gvl/test_last_thread.rb3
1 files changed, 1 insertions, 2 deletions
@@ -15,8 +15,7 @@ class TestLastThread < Test::Unit::TestCase
t1 = Time.now
t = t1 - t0
- assert_in_delta(1.0, t, 0.16)
end;
end
end
-