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

This commit is contained in:
Ludovic Marcotte
2016-01-18 14:05:30 -05:00
parent 3fa0c83626
commit 691ab3ff27
+1 -1
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];
}