aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop/reconnect_interop_client.cc
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-03-04 11:05:42 -0800
committerGravatar Craig Tiller <ctiller@google.com>2016-03-04 11:05:42 -0800
commit2d9476898b119ead1045eb31894bcd10176344fd (patch)
treef471b62ef9ad25f06cb83b8f49b522c96a30ec27 /test/cpp/interop/reconnect_interop_client.cc
parent647def23765596dfac0bbcc3191960c8da68f12f (diff)
Revert "Ensure that no #includes are inside of a namespace."
Diffstat (limited to 'test/cpp/interop/reconnect_interop_client.cc')
-rw-r--r--test/cpp/interop/reconnect_interop_client.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/cpp/interop/reconnect_interop_client.cc b/test/cpp/interop/reconnect_interop_client.cc
index c668edaceb..79a60cc860 100644
--- a/test/cpp/interop/reconnect_interop_client.cc
+++ b/test/cpp/interop/reconnect_interop_client.cc
@@ -34,16 +34,16 @@
#include <memory>
#include <sstream>
+#include <grpc/grpc.h>
+#include <grpc/support/log.h>
#include <gflags/gflags.h>
#include <grpc++/channel.h>
#include <grpc++/client_context.h>
-#include <grpc/grpc.h>
-#include <grpc/support/log.h>
-#include "src/proto/grpc/testing/empty.grpc.pb.h"
-#include "src/proto/grpc/testing/messages.grpc.pb.h"
-#include "src/proto/grpc/testing/test.grpc.pb.h"
#include "test/cpp/util/create_test_channel.h"
#include "test/cpp/util/test_config.h"
+#include "src/proto/grpc/testing/test.grpc.pb.h"
+#include "src/proto/grpc/testing/empty.grpc.pb.h"
+#include "src/proto/grpc/testing/messages.grpc.pb.h"
DEFINE_int32(server_control_port, 0, "Server port for control rpcs.");
DEFINE_int32(server_retry_port, 0, "Server port for testing reconnection.");