We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed120dc commit 3485f28Copy full SHA for 3485f28
test/test.cc
@@ -5932,9 +5932,8 @@ TEST_F(ServerTest, SendLargeBodyAfterRequestLineError) {
5932
start = std::chrono::high_resolution_clock::now();
5933
auto resGet = cli_.send(get);
5934
end = std::chrono::high_resolution_clock::now();
5935
- elapsed =
5936
- std::chrono::duration_cast<std::chrono::milliseconds>(end - start)
5937
- .count();
+ elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(end - start)
+ .count();
5938
5939
ASSERT_TRUE(resGet);
5940
EXPECT_EQ(StatusCode::OK_200, resGet->status);
0 commit comments