From 8ef2d2ecc489cfcd1c08fc99a96ae09ce47f4ffe Mon Sep 17 00:00:00 2001 From: cnnrmnn Date: Thu, 13 May 2021 12:54:17 -0400 Subject: [PATCH] Update tests --- Library/Homebrew/test/download_strategies/curl_spec.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/test/download_strategies/curl_spec.rb b/Library/Homebrew/test/download_strategies/curl_spec.rb index 09cd6ca07a..31fd493d2e 100644 --- a/Library/Homebrew/test/download_strategies/curl_spec.rb +++ b/Library/Homebrew/test/download_strategies/curl_spec.rb @@ -23,9 +23,10 @@ describe CurlDownloadStrategy do it "calls curl with default arguments" do expect(strategy).to receive(:curl).with( + # example.com supports partial requests. + "--continue-at", "-", "--location", "--remote-time", - "--continue-at", "0", "--output", an_instance_of(Pathname), url, an_instance_of(Hash)