mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 17:54:00 +02:00
Lowered threshold to 0.999
This commit is contained in:
parent
b7a170c718
commit
44c76061ed
1 changed files with 1 additions and 1 deletions
|
@ -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.999 };
|
||||
bool success{ true };
|
||||
bool keepOn{ true };
|
||||
for (int i = 0; keepOn && i < expectedImages.length(); ++i) {
|
||||
|
|
Loading…
Reference in a new issue