mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 09:18:27 +00:00
Fix warning
This commit is contained in:
parent
ef63f97afe
commit
913314f1b1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue