| Index: components/cronet/ios/test/cronet_http_test.mm
|
| diff --git a/components/cronet/ios/test/cronet_http_test.mm b/components/cronet/ios/test/cronet_http_test.mm
|
| index e1642feeaf9cbb5a6ad0cff8fdde7d7e7a03d6b1..5281a0bc50252ae8c5bb9cd0d86a3d53817971bf 100644
|
| --- a/components/cronet/ios/test/cronet_http_test.mm
|
| +++ b/components/cronet/ios/test/cronet_http_test.mm
|
| @@ -130,7 +130,7 @@ class HttpTest : public ::testing::Test {
|
| [Cronet setRequestFilterBlock:^(NSURLRequest* request) {
|
| return YES;
|
| }];
|
| - StartCronetIfNecessary(grpc_support::GetQuicTestServerPort());
|
| + StartCronet(grpc_support::GetQuicTestServerPort());
|
| [Cronet registerHttpProtocolHandler];
|
| NSURLSessionConfiguration* config =
|
| [NSURLSessionConfiguration ephemeralSessionConfiguration];
|
| @@ -147,6 +147,8 @@ class HttpTest : public ::testing::Test {
|
| void TearDown() override {
|
| grpc_support::ShutdownQuicTestServer();
|
| TestServer::Shutdown();
|
| +
|
| + [Cronet stopNetLog];
|
| }
|
|
|
| // Launches the supplied |task| and blocks until it completes, with a timeout
|
|
|