@@ -268,7 +268,7 @@ void TestQgsMapToolIdentifyAction::lengthCalculation()
268268 length = derivedLength.remove ( ' ,' ).split ( ' ' ).at ( 0 ).toDouble ();
269269 QGSCOMPARENEAR ( length, 16.734000 , 0.001 );
270270
271- // no conversion of cartesian lengths between unit types
271+ // no conversion of Cartesian lengths between unit types
272272 s.setValue ( QStringLiteral ( " /qgis/measure/keepbaseunit" ), true );
273273 QgsProject::instance ()->setDistanceUnits ( QgsUnitTypes::DistanceDegrees );
274274 result = action->identify ( mapPoint.x (), mapPoint.y (), QList<QgsMapLayer *>() << tempLayer.get () );
@@ -342,7 +342,7 @@ void TestQgsMapToolIdentifyAction::perimeterCalculation()
342342 perimeter = derivedPerimeter.remove ( ' ,' ).split ( ' ' ).at ( 0 ).toDouble ();
343343 QCOMPARE ( perimeter, 79.711 );
344344
345- // no conversion of cartesian lengths between unit types
345+ // no conversion of Cartesian lengths between unit types
346346 s.setValue ( QStringLiteral ( " /qgis/measure/keepbaseunit" ), true );
347347 QgsProject::instance ()->setDistanceUnits ( QgsUnitTypes::DistanceDegrees );
348348 result = action->identify ( mapPoint.x (), mapPoint.y (), QList<QgsMapLayer *>() << tempLayer.get () );
@@ -418,7 +418,7 @@ void TestQgsMapToolIdentifyAction::areaCalculation()
418418 area = derivedArea.remove ( ' ,' ).split ( ' ' ).at ( 0 ).toDouble ();
419419 QGSCOMPARENEAR ( area, 388.280000 , 0.001 );
420420
421- // no conversion of cartesian lengths between unit types
421+ // no conversion of Cartesian lengths between unit types
422422 s.setValue ( QStringLiteral ( " /qgis/measure/keepbaseunit" ), true );
423423 QgsProject::instance ()->setAreaUnits ( QgsUnitTypes::AreaSquareDegrees );
424424 result = action->identify ( mapPoint.x (), mapPoint.y (), QList<QgsMapLayer *>() << tempLayer.get () );
0 commit comments