summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/auto/declarative_core/tst_positionsource.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/auto/declarative_core/tst_positionsource.qml b/tests/auto/declarative_core/tst_positionsource.qml
index bf393ee5..9984e783 100644
--- a/tests/auto/declarative_core/tst_positionsource.qml
+++ b/tests/auto/declarative_core/tst_positionsource.qml
@@ -162,8 +162,7 @@ TestCase {
compare(directionSpy.count, 2)
fuzzyCompare(testingSource.position.direction, 45, 0.1)
verify(testingSource.position.speedValid)
- console.log("Speed:", testingSource.position.speed)
- verify(testingSource.position.speed > 15000)
+ verify(testingSource.position.speed > 10000)
testingSource.active = false;
wait(2500);
@@ -174,6 +173,6 @@ TestCase {
compare(directionSpy.count, 2)
fuzzyCompare(testingSource.position.direction, 45, 0.1)
verify(testingSource.position.speedValid)
- verify(testingSource.position.speed > 15000)
+ verify(testingSource.position.speed > 10000)
}
}