From 7b4494748e85624b76bce245da6d22b808c17cdb Mon Sep 17 00:00:00 2001 From: hyperxor Date: Fri, 10 Jan 2020 00:17:40 +0300 Subject: [PATCH] fix indentation --- test/test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.cc b/test/test.cc index f43924b..9a5e4a7 100644 --- a/test/test.cc +++ b/test/test.cc @@ -1948,7 +1948,7 @@ TEST(ServerRequestParsingTest, ReadHeadersRegexComplexity) { bool listen_thread_ok = false; thread t = thread([&] { listen_thread_ok = svr.listen(HOST, PORT); }); while (!svr.is_running()) { - std::this_thread::sleep_for(std::chrono::milliseconds(1)); + std::this_thread::sleep_for(std::chrono::milliseconds(1)); } // A certain header line causes an exception if the header property is parsed @@ -2023,7 +2023,7 @@ protected: t_ = thread([&]() { ASSERT_TRUE(svr_.listen(nullptr, PORT, AI_PASSIVE)); }); while (!svr_.is_running()) { - std::this_thread::sleep_for(std::chrono::milliseconds(1)); + std::this_thread::sleep_for(std::chrono::milliseconds(1)); } }