Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix tests due to updated tolerance
  • Loading branch information
wonder-sk committed Feb 12, 2019
1 parent 673d494 commit 6fab904
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/quickgui/testqgsquickidentifykit.cpp
Expand Up @@ -63,7 +63,7 @@ void TestQgsQuickScaleBarKit::identifyOne()

double pointX = -31.208;
double pointY = 20.407999999999998;
double pointX2 = pointX + 1;
double pointX2 = pointX + 0.5;

// add feature
QgsFeature f1( tempLayer->dataProvider()->fields(), 1 );
Expand Down Expand Up @@ -111,7 +111,7 @@ void TestQgsQuickScaleBarKit::identifyOneDefinedVector()

double pointX = -31.208;
double pointY = 20.407999999999998;
double pointX2 = pointX + 1;
double pointX2 = pointX + 0.5;

// add feature
QgsFeature f1( tempLayer->dataProvider()->fields(), 1 );
Expand Down

0 comments on commit 6fab904

Please sign in to comment.