aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMStackTraceTest.m
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-11-11 15:00:55 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-11-11 15:00:55 +0000
commitee96eba5fd4929f251855009121803b70a48f2d2 (patch)
tree0b97a986995483d7f11ecef5fdbe6716c3d4c6a3 /Foundation/GTMStackTraceTest.m
parentdd4c1c15b5f4f178f55942ca6ffa63027fcb20df (diff)
[Author: thomasvl]
We still have a bunch that doesn't work on 10.6, but this fixes some things: Update the logger test to handle the format change on 10.6. Update the AppleScript test to handle the 10.6 behaviors. Fix typo in the StackTraceTest. R=dmaclach DELTA=26 (18 added, 0 deleted, 8 changed)
Diffstat (limited to 'Foundation/GTMStackTraceTest.m')
-rw-r--r--Foundation/GTMStackTraceTest.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Foundation/GTMStackTraceTest.m b/Foundation/GTMStackTraceTest.m
index 0739122..385457a 100644
--- a/Foundation/GTMStackTraceTest.m
+++ b/Foundation/GTMStackTraceTest.m
@@ -67,7 +67,7 @@
STAssertGreaterThan(depth, (size_t)4, nil);
// All that we got have symbols
for (NSUInteger lp = 0 ; lp < depth ; ++lp) {
- STAssertNotNULL(descs[lp].symbol, @"didn't get a symble at depth %lu", lp);
+ STAssertNotNULL(descs[lp].symbol, @"didn't get a symbol at depth %lu", lp);
}
// Do it again, but don't give it enough space (to make sure it handles that)
@@ -78,7 +78,7 @@
STAssertLessThan(depth, fullDepth, nil);
// All that we got have symbols
for (NSUInteger lp = 0 ; lp < depth ; ++lp) {
- STAssertNotNULL(descs[lp].symbol, @"didn't get a symble at depth %lu", lp);
+ STAssertNotNULL(descs[lp].symbol, @"didn't get a symbol at depth %lu", lp);
}
}