Changed threshold from 0.98 to 0.999

This commit is contained in:
Nissim Hadar 2017-12-01 09:28:31 -08:00
parent 12ac551d25
commit 526aa8fe57

View file

@ -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.98 };
const double THRESHOLD{ 0.999 };
bool success{ true };
bool keepOn{ true };
for (int i = 0; keepOn && i < expectedImages.length(); ++i) {