Add assert for error to log webp error which seems to error often on CI

This commit is contained in:
Garrett Moon
2015-12-05 13:35:10 -08:00
parent b676b54aa2
commit 3dd13b726a

View File

@@ -353,6 +353,7 @@
options:PINRemoteImageManagerDownloadOptionsNone
completion:^(PINRemoteImageManagerResult *result)
{
XCTAssert(result.error == nil, @"error is non-nil: %@", result.error);
outImage = result.image;
outAnimatedImage = result.animatedImage;
dispatch_semaphore_signal(semaphore);