Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix qcompare
  • Loading branch information
troopa81 authored and nyalldawson committed Mar 20, 2020
1 parent 1eeba4c commit 4aed962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/core/testqgstaskmanager.cpp
Expand Up @@ -1016,7 +1016,7 @@ void TestQgsTaskManager::progressChanged()
flushEvents();
QCOMPARE( spy.count(), 3 );
QCOMPARE( spy.last().at( 0 ).toLongLong(), 1LL );
QCOMPARE( spy.last().at( 1 ).toDouble(), 100 );
QCOMPARE( spy.last().at( 1 ).toDouble(), 100.0 );
QCOMPARE( task2->status(), QgsTask::Running );
task2->emitProgressChanged( 80.0 );
while ( spy.count() == 3 )
Expand Down

0 comments on commit 4aed962

Please sign in to comment.