From 8fa29a75abf265c20cdeb9779bf25c1b3eafcf26 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Mon, 10 Nov 2025 11:10:15 +0900 Subject: [PATCH] Fix condition for Timeout Error with >= macOS 26.1 --- test/resolv/test_dns.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/resolv/test_dns.rb b/test/resolv/test_dns.rb index 2bb8061edb..86a1ecf569 100644 --- a/test/resolv/test_dns.rb +++ b/test/resolv/test_dns.rb @@ -525,7 +525,7 @@ class TestResolvDNS < Test::Unit::TestCase if RUBY_PLATFORM.match?(/mingw/) # cannot repo locally omit 'Timeout Error on MinGW CI' - elsif macos?(26,1) + elsif macos?([26,1]..) omit 'Timeout Error on macOS 26.1+' else raise Timeout::Error