aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMStackTraceTest.m
diff options
context:
space:
mode:
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);
}
}