aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http/server/http_ut.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/http/server/http_ut.cpp')
-rw-r--r--library/cpp/http/server/http_ut.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/http/server/http_ut.cpp b/library/cpp/http/server/http_ut.cpp
index cc62bb988e..b8da3c4c35 100644
--- a/library/cpp/http/server/http_ut.cpp
+++ b/library/cpp/http/server/http_ut.cpp
@@ -167,7 +167,7 @@ Y_UNIT_TEST_SUITE(THttpServerTest) {
THolder<TSocket> singleReqSocket;
if (KeepAliveConnection) {
if (!KeepAlivedSocket) {
- KeepAlivedSocket = MakeHolder<TSocket>(TNetworkAddress("localhost", Port), TDuration::Seconds(10));
+ KeepAlivedSocket = MakeHolder<TSocket>(TNetworkAddress("localhost", Port), TDuration::Seconds(10));
}
s = KeepAlivedSocket.Get();
} else {
@@ -711,7 +711,7 @@ Y_UNIT_TEST_SUITE(THttpServerTest) {
for (size_t i = 0; i < 3; ++i) {
auto func = [&server, port, keepAlive]() {
server.BusyThread();
- THolder<TTestRequest> r = MakeHolder<TTestRequest>(port);
+ THolder<TTestRequest> r = MakeHolder<TTestRequest>(port);
r->KeepAliveConnection = keepAlive;
r->Execute();
};