Add tolerance to shapeburst test

Fixes it on ubuntu trusty
This commit is contained in:
Matthias Kuhn 2014-11-18 11:08:28 +01:00
parent 00c5a75e03
commit 7d7ac62f67

View File

@ -237,7 +237,7 @@ bool TestQgsShapeburst::imageCheck( QString theTestType )
myChecker.setControlName( "expected_" + theTestType );
myChecker.setMapSettings( mMapSettings );
myChecker.setColorTolerance( 20 );
bool myResultFlag = myChecker.runTest( theTestType );
bool myResultFlag = myChecker.runTest( theTestType, 500 );
mReport += myChecker.report();
return myResultFlag;
}