From ab6590cef277279b4fa20cbe19101f2d46722556 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Tue, 8 Nov 2022 18:43:53 +1000 Subject: [PATCH] Fix report --- .../Exceptions/ImageDifferenceIsOverThresholdException.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ImageSharp.Tests/TestUtilities/ImageComparison/Exceptions/ImageDifferenceIsOverThresholdException.cs b/tests/ImageSharp.Tests/TestUtilities/ImageComparison/Exceptions/ImageDifferenceIsOverThresholdException.cs index d6cb24fd62..b2fa7271aa 100644 --- a/tests/ImageSharp.Tests/TestUtilities/ImageComparison/Exceptions/ImageDifferenceIsOverThresholdException.cs +++ b/tests/ImageSharp.Tests/TestUtilities/ImageComparison/Exceptions/ImageDifferenceIsOverThresholdException.cs @@ -36,7 +36,7 @@ public class ImageDifferenceIsOverThresholdException : ImagesSimilarityException int i = 0; foreach (ImageSimilarityReport r in reports) { - sb.Append("Report ImageFrame {i}: "); + sb.Append($"Report ImageFrame {i}: "); sb.Append(r); sb.Append(Environment.NewLine); i++;