diff --git a/testing/scenario_app/bin/run_android_tests.dart b/testing/scenario_app/bin/run_android_tests.dart index 9c16fb9ed6fe6..669a255440f06 100644 --- a/testing/scenario_app/bin/run_android_tests.dart +++ b/testing/scenario_app/bin/run_android_tests.dart @@ -196,8 +196,14 @@ Future _run({ } if (SkiaGoldClient.isAvailable()) { final Future comparison = skiaGoldClient! - // Each color channel can be off by 2. - .addImg(fileName, goldenFile, screenshotSize: screenshot.pixelCount, pixelColorDelta: 8) + .addImg( + fileName, + goldenFile, + screenshotSize: screenshot.pixelCount, + // Each color channel can be off by 2. + pixelColorDelta: 8, + ) + .then((_) => logImportant('skia gold comparison succeeded: $fileName')) .catchError((Object error) { logWarning('skia gold comparison failed: $error'); comparisonsFailed++;