aboutsummaryrefslogtreecommitdiff
path: root/Foundation
diff options
context:
space:
mode:
authorGravatar dmaclach <dmaclach@gmail.com>2018-11-13 20:49:03 -0800
committerGravatar GitHub <noreply@github.com>2018-11-13 20:49:03 -0800
commit70d01d9ef4a77e1a491a51a3d7ff8645507c39a0 (patch)
tree981549a194b232f0c7d736918a6d097b0e167ef5 /Foundation
parentc385c8abf10326cd76ab29ac1a83ba550e0862e1 (diff)
Fix up timeout for test. (#205)
The changes here had a test looping 5 times with a 1 second wait trying to finish in a 5 second window. That's a little too close for flakiness. Increased time out to 10 seconds.
Diffstat (limited to 'Foundation')
-rw-r--r--Foundation/GTMNSThread+BlocksTest.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Foundation/GTMNSThread+BlocksTest.m b/Foundation/GTMNSThread+BlocksTest.m
index fc2923b..5eeb186 100644
--- a/Foundation/GTMNSThread+BlocksTest.m
+++ b/Foundation/GTMNSThread+BlocksTest.m
@@ -21,7 +21,7 @@
#import "GTMSenTestCase.h"
#import "GTMNSThread+Blocks.h"
-static const NSTimeInterval kTestTimeout = 5;
+static const NSTimeInterval kTestTimeout = 10;
static const int kThreadMethodCounter = 5;
static const int kThreadMethoduSleep = 10000;