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

This commit is contained in:
Ludovic Marcotte 2016-01-18 14:05:30 -05:00
parent 7fc6eec157
commit dbf6426449

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];
}