From 7849aff7a2e1f4234aa31b01a1870906d5431959 Mon Sep 17 00:00:00 2001 From: KITAITI Makoto Date: Wed, 1 Oct 2025 21:33:11 +0900 Subject: [PATCH] ruby : Loose RegExp for test (#3448) --- bindings/ruby/test/test_whisper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/ruby/test/test_whisper.rb b/bindings/ruby/test/test_whisper.rb index 12b82a8d..23479b7a 100644 --- a/bindings/ruby/test/test_whisper.rb +++ b/bindings/ruby/test/test_whisper.rb @@ -34,7 +34,7 @@ class TestWhisper < TestBase params = Whisper::Params.new @whisper.transcribe(AUDIO, params, n_processors: 4) {|text| - assert_match(/ask not what your country can do for you[,.] ask what you can do for your country/i, text) + assert_match(/what you can do for your country/i, text) } end