Fix Win32 build

Summary: related to T11798

Reviewers: ivica

Reviewed By: ivica

Subscribers: miljen, iljazovic

Differential Revision: https://repo.mireo.local/D27668
This commit is contained in:
Korina Šimičević
2024-02-01 13:10:09 +01:00
parent e143fcce63
commit 46a48fb62c
3 changed files with 15 additions and 18 deletions

View File

@@ -416,7 +416,7 @@ BOOST_FIXTURE_TEST_CASE(send_big_publish, shared_test_data) {
std::vector<std::string> buffers;
for (size_t i = 0; i < big_publish.size(); i += 65536)
buffers.push_back(big_publish.substr(i, 65536));
BOOST_TEST_REQUIRE(buffers.size() == 3);
BOOST_TEST_REQUIRE(buffers.size() == 3u);
// this single async_send will result in 3 calls to async_write_some in our stream
test::msg_exchange broker_side;