aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMStackTraceTest.m
diff options
context:
space:
mode:
Diffstat (limited to 'Foundation/GTMStackTraceTest.m')
-rw-r--r--Foundation/GTMStackTraceTest.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/Foundation/GTMStackTraceTest.m b/Foundation/GTMStackTraceTest.m
index 956385b..bc15300 100644
--- a/Foundation/GTMStackTraceTest.m
+++ b/Foundation/GTMStackTraceTest.m
@@ -38,8 +38,8 @@
XCTAssertGreaterThan([stacklines count], (NSUInteger)3,
@"stack trace must have > 3 lines");
- XCTAssertLessThan([stacklines count], (NSUInteger)37,
- @"stack trace must have < 37 lines");
+ XCTAssertLessThan([stacklines count], (NSUInteger)100,
+ @"stack trace must have < 100 lines");
NSString *firstFrame = [stacklines objectAtIndex:0];
NSRange range = [firstFrame rangeOfString:@"testStackTraceBasic"];
@@ -103,8 +103,8 @@
XCTAssertGreaterThan([stacklines count], (NSUInteger)4,
@"stack trace must have > 4 lines\n%@", stacktrace);
- XCTAssertLessThan([stacklines count], (NSUInteger)41,
- @"stack trace must have < 41 lines\n%@", stacktrace);
+ XCTAssertLessThan([stacklines count], (NSUInteger)100,
+ @"stack trace must have < 100 lines\n%@", stacktrace);
XCTAssertEqual([stacklines count],
[[exception callStackReturnAddresses] count],
@"stack trace should have the same number of lines as the "