aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core
diff options
context:
space:
mode:
authorGravatar Dan Zhang <danzh@google.com>2018-02-27 19:26:09 -0500
committerGravatar Dan Zhang <danzh@google.com>2018-02-27 19:26:09 -0500
commit6cc5a09ffda1cd441b8d5c67b99ac6b7698d5bf6 (patch)
tree341a544d3716edff2ff3b9ceb7a211774a91a3c7 /test/core
parentb293e9e8224d1ebe03cc7ef28782c4148542bff0 (diff)
fix format
Diffstat (limited to 'test/core')
-rw-r--r--test/core/iomgr/udp_server_test.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/core/iomgr/udp_server_test.cc b/test/core/iomgr/udp_server_test.cc
index 50e79a08b0..bb4cdc73d8 100644
--- a/test/core/iomgr/udp_server_test.cc
+++ b/test/core/iomgr/udp_server_test.cc
@@ -82,7 +82,7 @@ class TestGrpcUdpHandler : public GrpcUdpHandler {
}
void OnCanWrite(void* user_data,
- grpc_closure* notify_on_write_closure) override {
+ grpc_closure* notify_on_write_closure) override {
gpr_mu_lock(g_mu);
g_number_of_writes++;
@@ -115,7 +115,6 @@ class TestGrpcUdpHandlerFactory : public GrpcUdpHandlerFactory {
void DestroyUdpHandler(GrpcUdpHandler* handler) override {
gpr_log(GPR_INFO, "Destroy handler");
grpc_core::Delete(reinterpret_cast<TestGrpcUdpHandler*>(handler));
-
}
};
@@ -253,7 +252,7 @@ static void test_no_op_with_port_and_socket_factory(void) {
grpc_socket_factory_unref(&socket_factory->base);
- /* The server haven't start listening, so no udp handler to be notified. */
+/* The server haven't start listening, so no udp handler to be notified. */
GPR_ASSERT(g_number_of_orphan_calls == 0);
shutdown_and_destroy_pollset();
}