From cf8b788ca740f2af12d5f738b1bd69aab6ca3c89 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Fri, 10 Mar 2023 15:44:55 +1300 Subject: [PATCH] Fix CV test. --- test/ruby/test_thread_cv.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ruby/test_thread_cv.rb b/test/ruby/test_thread_cv.rb index 88733419da14fd..8c2800186adddc 100644 --- a/test/ruby/test_thread_cv.rb +++ b/test/ruby/test_thread_cv.rb @@ -8,7 +8,7 @@ class TestThreadConditionVariable < Test::Unit::TestCase def test_initialized assert_raise(TypeError) { - ConditionVariable.allocate.wait(nil) + ConditionVariable.allocate.wait(nil, "") } end