From ebad5cf503652ee2d53f9e8e3f88a923f52eddd8 Mon Sep 17 00:00:00 2001 From: Nissim Hadar Date: Wed, 6 Dec 2017 16:55:32 -0800 Subject: [PATCH] Reduced threshold from 0.9995 to 0.995 --- tools/auto-tester/src/Test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/auto-tester/src/Test.cpp b/tools/auto-tester/src/Test.cpp index 835655eef1..f314e25df3 100644 --- a/tools/auto-tester/src/Test.cpp +++ b/tools/auto-tester/src/Test.cpp @@ -24,7 +24,7 @@ Test::Test() { bool Test::compareImageLists(QStringList expectedImages, QStringList resultImages) { // Loop over both lists and compare each pair of images // Quit loop if user has aborted due to a failed test. - const double THRESHOLD{ 0.9995 }; + const double THRESHOLD{ 0.995 }; bool success{ true }; bool keepOn{ true }; for (int i = 0; keepOn && i < expectedImages.length(); ++i) {