Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
qicosmos committed Nov 1, 2023
1 parent 4eb1d0b commit 0ddbd79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coro_io/tests/test_client_pool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<void> {
// 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;
};

Expand Down

0 comments on commit 0ddbd79

Please sign in to comment.