Skip to content

Commit

Permalink
Bring back commented out lines in the test
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed Apr 15, 2020
1 parent 2dc3930 commit 2589750
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/src/app/testqgsmaptoolidentifyaction.cpp
Expand Up @@ -696,13 +696,12 @@ void TestQgsMapToolIdentifyAction::identifyVectorTile()
QList<QgsMapToolIdentify::IdentifyResult> results;
results = testIdentifyVectorTile( tempLayer, 15186127, -2974969 );
QCOMPARE( results.size(), 1 );
#if 0
QCOMPARE( results[0].mLayer, tempLayer );
QCOMPARE( results[0].mLabel, QStringLiteral( "place" ) );
QCOMPARE( results[0].mFeature.geometry().wkbType(), QgsWkbTypes::Point );
QCOMPARE( results[0].mFeature.attribute( QStringLiteral( "class" ) ).toString(), QStringLiteral( "country" ) );
QCOMPARE( results[0].mFeature.attribute( QStringLiteral( "name" ) ).toString(), QStringLiteral( "Australia" ) );
#endif

delete tempLayer;
}

Expand Down

0 comments on commit 2589750

Please sign in to comment.