update curl to 7.87.0

This commit is contained in:
BlackMATov
2023-01-07 08:58:51 +07:00
parent 5d62bc5905
commit 7f1d0fe672
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ if(USE_EMBEDDED_CURL)
FetchContent_Declare(
embedded_curl
GIT_REPOSITORY https://github.com/curl/curl
GIT_TAG curl-7_84_0)
GIT_TAG curl-7_87_0)
FetchContent_GetProperties(embedded_curl)
if(NOT embedded_curl_POPULATED)

View File

@@ -101,7 +101,7 @@ TEST_CASE("curly") {
SUBCASE("wait") {
{
auto req = net::request_builder("https://httpbin.org/delay/1").send();
auto req = net::request_builder("https://httpbin.org/delay/2").send();
REQUIRE(req.status() == net::req_status::pending);
REQUIRE(req.wait() == net::req_status::done);
REQUIRE(req.status() == net::req_status::done);