aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/end2end
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-08-29 16:59:21 -0700
committerGravatar Vijay Pai <vpai@google.com>2016-08-29 16:59:21 -0700
commitd4d5f4cd53a74f7618f720bffa176b05834eb3ac (patch)
treef93489652e447801ce7442356416649801e3c6d8 /test/cpp/end2end
parenta9c0d7f88b213d9a5e41808fd5d1eceaff1a034f (diff)
clang-format
Diffstat (limited to 'test/cpp/end2end')
-rw-r--r--test/cpp/end2end/hybrid_end2end_test.cc17
1 files changed, 9 insertions, 8 deletions
diff --git a/test/cpp/end2end/hybrid_end2end_test.cc b/test/cpp/end2end/hybrid_end2end_test.cc
index eb7125cb04..a6ea13aa8b 100644
--- a/test/cpp/end2end/hybrid_end2end_test.cc
+++ b/test/cpp/end2end/hybrid_end2end_test.cc
@@ -422,13 +422,13 @@ TEST_F(HybridEnd2endTest, AsyncRequestStreamResponseStream_SyncDupService) {
}
// Add a second service with one sync streamed unary method.
-class StreamedUnaryDupPkg : public
- duplicate::EchoTestService::WithStreamedUnaryMethod_Echo<
- TestServiceImplDupPkg> {
+class StreamedUnaryDupPkg
+ : public duplicate::EchoTestService::WithStreamedUnaryMethod_Echo<
+ TestServiceImplDupPkg> {
public:
Status StreamedEcho(ServerContext* context,
- ServerUnaryStreamer<EchoRequest, EchoResponse>* stream)
- GRPC_OVERRIDE {
+ ServerUnaryStreamer<EchoRequest, EchoResponse>* stream)
+ GRPC_OVERRIDE {
EchoRequest req;
EchoResponse resp;
uint32_t next_msg_sz;
@@ -461,11 +461,12 @@ TEST_F(HybridEnd2endTest,
}
// Add a second service that is fully Streamed Unary
-class FullyStreamedUnaryDupPkg : public duplicate::EchoTestService::StreamedUnaryService {
+class FullyStreamedUnaryDupPkg
+ : public duplicate::EchoTestService::StreamedUnaryService {
public:
Status StreamedEcho(ServerContext* context,
- ServerUnaryStreamer<EchoRequest, EchoResponse>* stream)
- GRPC_OVERRIDE {
+ ServerUnaryStreamer<EchoRequest, EchoResponse>* stream)
+ GRPC_OVERRIDE {
EchoRequest req;
EchoResponse resp;
uint32_t next_msg_sz;