diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-08-09 16:36:49 -0700 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-08-09 16:37:18 -0700 |
commit | 83c57cbed6e4cfd01628a6ae48df980bd2d1d211 (patch) | |
tree | 7b882679fda5d5bc91bff2ce35a2703895776d0f /src/objective-c | |
parent | 7d770488ea84f3964b999bac3ba8c019e2fa17fb (diff) |
Increase test timeouts to reduce flakiness.
Diffstat (limited to 'src/objective-c')
-rw-r--r-- | src/objective-c/tests/GRPCClientTests.m | 4 | ||||
-rw-r--r-- | src/objective-c/tests/InteropTests.m | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/objective-c/tests/GRPCClientTests.m b/src/objective-c/tests/GRPCClientTests.m index e85dd6e65c..f23102988b 100644 --- a/src/objective-c/tests/GRPCClientTests.m +++ b/src/objective-c/tests/GRPCClientTests.m @@ -114,7 +114,7 @@ static ProtoMethod *kUnaryCallMethod; [call startWithWriteable:responsesWriteable]; - [self waitForExpectationsWithTimeout:4 handler:nil]; + [self waitForExpectationsWithTimeout:8 handler:nil]; } - (void)testSimpleProtoRPC { @@ -146,7 +146,7 @@ static ProtoMethod *kUnaryCallMethod; [call startWithWriteable:responsesWriteable]; - [self waitForExpectationsWithTimeout:4 handler:nil]; + [self waitForExpectationsWithTimeout:8 handler:nil]; } - (void)testMetadata { diff --git a/src/objective-c/tests/InteropTests.m b/src/objective-c/tests/InteropTests.m index 37e06f25eb..1b63fe2059 100644 --- a/src/objective-c/tests/InteropTests.m +++ b/src/objective-c/tests/InteropTests.m @@ -128,7 +128,7 @@ static NSString * const kRemoteSSLHost = @"grpc-test.sandbox.google.com"; [expectation fulfill]; }]; - [self waitForExpectationsWithTimeout:8 handler:nil]; + [self waitForExpectationsWithTimeout:16 handler:nil]; } - (void)testClientStreamingRPC { |