From 0ddbd79501ddd685e11fe446128079b9a340f778 Mon Sep 17 00:00:00 2001 From: qicosmos Date: Wed, 1 Nov 2023 17:19:57 +0800 Subject: [PATCH] format --- src/coro_io/tests/test_client_pool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coro_io/tests/test_client_pool.cpp b/src/coro_io/tests/test_client_pool.cpp index c85f8306b..f1d9d64a0 100644 --- a/src/coro_io/tests/test_client_pool.cpp +++ b/src/coro_io/tests/test_client_pool.cpp @@ -220,10 +220,10 @@ TEST_CASE("test client pools parallel r/w") { CHECK(cli->get_host_name() == std::to_string(i)); } auto rw = [&pool](int i) -> Lazy { -// ELOG_DEBUG << "start to insert {" << i << "} to hash table."; + // ELOG_DEBUG << "start to insert {" << i << "} to hash table."; auto cli = pool[std::to_string(i)]; CHECK(cli->get_host_name() == std::to_string(i)); -// ELOG_DEBUG << "end to insert {" << i << "} to hash table."; + // ELOG_DEBUG << "end to insert {" << i << "} to hash table."; co_return; };