Ignore deprecation warning in the test of deprecated feature

pull/6378/head
Jorge Canizales 9 years ago
parent 8a556b7fe3
commit 00ca8eaa1e
  1. 3
      src/objective-c/tests/InteropTests.m

@ -347,7 +347,10 @@ static cronet_engine *cronetEngine = NULL;
[_service emptyCallWithRequest:request handler:^(RMTEmpty *response, NSError *error) {
XCTAssertNil(error, @"First RPC finished with unexpected error: %@", error);
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
[GRPCCall closeOpenConnections];
#pragma clang diagnostic pop
[_service emptyCallWithRequest:request handler:^(RMTEmpty *response, NSError *error) {
XCTAssertNil(error, @"Second RPC finished with unexpected error: %@", error);

Loading…
Cancel
Save