From ee96eba5fd4929f251855009121803b70a48f2d2 Mon Sep 17 00:00:00 2001 From: "gtm.daemon" Date: Wed, 11 Nov 2009 15:00:55 +0000 Subject: [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) --- Foundation/GTMStackTraceTest.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Foundation/GTMStackTraceTest.m') 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); } } -- cgit v1.2.3