Commit cbc1a463 authored by knowledge4igor's avatar knowledge4igor

Tiny changes in test + delete std::cout

parent 37c467df
#include <pistache/async.h>
#include <pistache/client.h>
#include <pistache/cookie.h>
#include <pistache/endpoint.h>
......@@ -7,6 +8,7 @@
#include <chrono>
#include <unordered_map>
#include <string>
using namespace Pistache;
......@@ -90,7 +92,6 @@ TEST(http_client_test, one_client_with_one_request_with_several_cookies) {
response.then([&](Http::Response rsp) {
for (auto&& cookie: rsp.cookies()) {
cookiesStorages[cookie.name] = cookie.value;
std::cout << "get: " << cookie.name << "\n";
}
},
Async::IgnoreException);
......
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