diff options
author | Yuchen Zeng <zyc@google.com> | 2016-06-21 11:57:46 -0700 |
---|---|---|
committer | Yuchen Zeng <zyc@google.com> | 2016-06-21 11:57:46 -0700 |
commit | 3d399cb102510e46ca252213ad2799b40704d33d (patch) | |
tree | 6415d79836dc890bc098a82a949f40177741a5c4 /src | |
parent | 8d9e83806d24ad5e1a47bb705d88816bfc8b4864 (diff) |
Fix format issues
Diffstat (limited to 'src')
-rw-r--r-- | src/objective-c/tests/InteropTests.m | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/objective-c/tests/InteropTests.m b/src/objective-c/tests/InteropTests.m index 15ce120c55..3102cf597a 100644 --- a/src/objective-c/tests/InteropTests.m +++ b/src/objective-c/tests/InteropTests.m @@ -284,9 +284,10 @@ static cronet_engine *cronetEngine = NULL; // A buffered pipe to which we never write any value acts as a writer that just hangs. GRXBufferedPipe *requestsBuffer = [[GRXBufferedPipe alloc] init]; - GRPCProtoCall *call = [_service RPCToStreamingInputCallWithRequestsWriter:requestsBuffer - handler:^(RMTStreamingInputCallResponse *response, - NSError *error) { + GRPCProtoCall *call = + [_service RPCToStreamingInputCallWithRequestsWriter:requestsBuffer + handler:^(RMTStreamingInputCallResponse *response, + NSError *error) { XCTAssertEqual(error.code, GRPC_STATUS_CANCELLED); [expectation fulfill]; }]; |