From f8731aff1a104cdd9e441d878fcbfaed43d05dd7 Mon Sep 17 00:00:00 2001 From: Ganjar P Manggala Date: Mon, 16 Apr 2018 21:31:56 +0700 Subject: [PATCH] Update test screenshot path --- XCSummary/Templates/CMHTMLReportBuilder.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XCSummary/Templates/CMHTMLReportBuilder.m b/XCSummary/Templates/CMHTMLReportBuilder.m index 1947dcf..38ae9cd 100644 --- a/XCSummary/Templates/CMHTMLReportBuilder.m +++ b/XCSummary/Templates/CMHTMLReportBuilder.m @@ -142,7 +142,7 @@ - (void)_appendActivity:(CMActivitySummary *)activity indentation:(CGFloat)inden [self.fileManager copyItemAtPath:fullPath toPath:[self.htmlResourcePath stringByAppendingPathComponent:imageName] error:nil]; - NSString *localImageName = [NSString stringWithFormat:@"resources/Screenshot_%@.png", activity.uuid.UUIDString]; + NSString *localImageName = [NSString stringWithFormat:@"Attachments/Screenshot_%@.png", activity.uuid.UUIDString]; composedString = [NSString stringWithFormat:templateFormat, indentation, @"px", activity.title, activity.finishTimeInterval - activity.startTimeInterval, localImageName]; } else