From f160e655cb88ad530bcfdc0a9559ec2fc49de7c5 Mon Sep 17 00:00:00 2001 From: Afroz-Shaikh Date: Mon, 6 May 2024 18:49:08 +0530 Subject: [PATCH] fix analyze issue --- test/flutter_test_config.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/flutter_test_config.dart b/test/flutter_test_config.dart index c47590d..62b9d2b 100644 --- a/test/flutter_test_config.dart +++ b/test/flutter_test_config.dart @@ -45,11 +45,11 @@ class LocalFileComparatorWithThreshold extends LocalFileComparator { ); if (!result.passed && result.diffPercent <= threshold) { - print( - 'A difference of ${result.diffPercent * 100}% was found, but it is ' - 'acceptable since it is not greater than the threshold of ' - '${threshold * 100}%', - ); + // print( + // 'A difference of ${result.diffPercent * 100}% was found, but it is ' + // 'acceptable since it is not greater than the threshold of ' + // '${threshold * 100}%', + // ); return true; }