From 2812f22b82b224984038028d5c306627e54ff1a2 Mon Sep 17 00:00:00 2001 From: Marco Costa Date: Fri, 24 Mar 2023 10:55:55 -0700 Subject: [PATCH] Test:Fix start_with typo --- spec/spec_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index bc1dfd39db1..2352688cd46 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -260,7 +260,7 @@ def initialize(*args, &block) ThreadHelpers.with_leaky_thread_creation('Deadline thread') do Thread.new do - Thread.current.name = 'spec_helper.rb CI debugging Deadline thread' unless RUBY_VERSION.start_with('2.1.', '2.2.') + Thread.current.name = 'spec_helper.rb CI debugging Deadline thread' unless RUBY_VERSION.start_with?('2.1.', '2.2.') sleep_time = 30 * 60 # 30 minutes sleep(sleep_time)