1
0
mirror of synced 2025-04-19 00:24:02 +03:00

Fix warning

This commit is contained in:
yhirose 2024-09-05 17:43:51 -04:00
parent ef63f97afe
commit 913314f1b1

View File

@ -7698,7 +7698,7 @@ TEST(Expect100ContinueTest, ServerClosesConnection) {
auto dl = curl_off_t{};
const auto res = curl_easy_getinfo(curl.get(), CURLINFO_SIZE_DOWNLOAD_T, &dl);
ASSERT_EQ(res, CURLE_OK);
ASSERT_EQ(dl, sizeof reject - 1);
ASSERT_EQ(dl, (curl_off_t)sizeof reject - 1);
}
{