From d31f4e46976274a66925140e1e5732f6e32d198f Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sat, 9 Sep 2023 22:47:47 -0400 Subject: [PATCH] fix: update UA regex Signed-off-by: Rui Chen --- Library/Homebrew/test/download_strategies/curl_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/download_strategies/curl_spec.rb b/Library/Homebrew/test/download_strategies/curl_spec.rb index 3ec64cdea14fe..2fe3dab6ade77 100644 --- a/Library/Homebrew/test/download_strategies/curl_spec.rb +++ b/Library/Homebrew/test/download_strategies/curl_spec.rb @@ -75,7 +75,7 @@ /curl/, hash_including(args: array_including_cons( "--user-agent", - a_string_matching(/Mozilla.*Mac OS X 10.*AppleWebKit/), + a_string_matching(/Mozilla.*Mac OS X 13.*AppleWebKit/), )), ) .at_least(:once)