From feef8be5aeba73fa2d96ec282d1da8b885340f62 Mon Sep 17 00:00:00 2001 From: Vijay Pai Date: Wed, 3 Feb 2016 16:21:25 -0800 Subject: [PATCH] clang-format --- test/cpp/end2end/thread_stress_test.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/cpp/end2end/thread_stress_test.cc b/test/cpp/end2end/thread_stress_test.cc index 151b754c62a..64e17cf44f1 100644 --- a/test/cpp/end2end/thread_stress_test.cc +++ b/test/cpp/end2end/thread_stress_test.cc @@ -55,8 +55,8 @@ using grpc::testing::EchoRequest; using grpc::testing::EchoResponse; using std::chrono::system_clock; -const int kNumThreads = 100; // Number of threads -const int kNumRpcs = 1000; // Number of RPCs per thread +const int kNumThreads = 100; // Number of threads +const int kNumRpcs = 1000; // Number of RPCs per thread namespace grpc { namespace testing { @@ -232,8 +232,7 @@ TEST_F(End2endTest, ThreadStress) { common_.ResetStub(); std::vector threads; for (int i = 0; i < kNumThreads; ++i) { - threads.push_back( - new std::thread(SendRpc, common_.GetStub(), kNumRpcs)); + threads.push_back(new std::thread(SendRpc, common_.GetStub(), kNumRpcs)); } for (int i = 0; i < kNumThreads; ++i) { threads[i]->join();