(fix) don't use false, but use NO

pull/188/head
Ludovic Marcotte 2016-01-18 14:05:30 -05:00
parent 3fa0c83626
commit 691ab3ff27
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@
if(![[NSFileManager defaultManager] fileExistsAtPath: file_path]) {
NSString *error = [NSString stringWithFormat: @"File %@ doesn't exist", file_path];
testWithMessage(false, error);
testWithMessage(NO, error);
}
return [NSData dataWithContentsOfFile: file_path];
}