Commit c5a6c77f authored by knowledge4igor's avatar knowledge4igor

Fix build

parent a1be6b64
...@@ -208,7 +208,7 @@ TEST(http_client_test, one_client_with_multiple_requests_and_one_connection_per_ ...@@ -208,7 +208,7 @@ TEST(http_client_test, one_client_with_multiple_requests_and_one_connection_per_
std::vector<Async::Promise<Http::Response>> responses; std::vector<Async::Promise<Http::Response>> responses;
const int RESPONSE_SIZE = 6; const int RESPONSE_SIZE = 6;
std::atomic<int> response_counter = 0; std::atomic<int> response_counter(0);
auto rb = client.get(address); auto rb = client.get(address);
for (int i = 0; i < RESPONSE_SIZE; ++i) for (int i = 0; i < RESPONSE_SIZE; ++i)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment