From 380899d5f740f36a2e0339c617bbb400e5bda04a Mon Sep 17 00:00:00 2001 From: "gtm.daemon" Date: Sat, 28 Nov 2009 04:00:37 +0000 Subject: [Author: thomasvl] Update to some newer apis for the iPhone SDKs on the Xcode 3.2.x toolchain, the warnings don't happen on the 3.1.x tool chain. R=dmaclach DELTA=11 (8 added, 0 deleted, 3 changed) --- Foundation/GTMLoggerTest.m | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'Foundation/GTMLoggerTest.m') diff --git a/Foundation/GTMLoggerTest.m b/Foundation/GTMLoggerTest.m index 2d6824a..0cd7dc7 100644 --- a/Foundation/GTMLoggerTest.m +++ b/Foundation/GTMLoggerTest.m @@ -295,7 +295,9 @@ [fh logMessage:@"test 4" level:kGTMLoggerLevelAssert]; [fh closeFile]; - NSString *contents = [NSString stringWithContentsOfFile:path_]; + NSString *contents = [NSString stringWithContentsOfFile:path_ + encoding:NSUTF8StringEncoding + error:nil]; STAssertEqualObjects(@"test 0\ntest 1\ntest 2\ntest 3\ntest 4\n", contents, nil); } @@ -458,7 +460,10 @@ [fh logMessage:@"test 6" level:kGTMLoggerLevelInfo]; [fh closeFile]; - NSString *contents = [NSString stringWithContentsOfFile:path_]; + NSString *contents = [NSString stringWithContentsOfFile:path_ + encoding:NSUTF8StringEncoding + error:NULL]; + STAssertNotNil(contents, nil); STAssertEqualObjects(@"test 1\ntest 2\ntest 3\ntest 4\ntest 5\ntest 6\n", contents, nil); } -- cgit v1.2.3