diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-11-10 11:10:15 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-11-10 11:10:23 +0900 |
| commit | 8fa29a75abf265c20cdeb9779bf25c1b3eafcf26 (patch) | |
| tree | 88ffadd80fac98b9966ea2592f0659b77314dab7 | |
| parent | a43acf9a3f411fac78d92b9f2f8060c83f9ab15b (diff) | |
Fix condition for Timeout Error with >= macOS 26.1
| -rw-r--r-- | test/resolv/test_dns.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
