Skip to content

Commit

Permalink
Merge pull request #50255 from lbartoletti/bugfix_50218_suite_rm_old_…
Browse files Browse the repository at this point in the history
…comment

[QgsOgrUtils test] Remove an old comment
  • Loading branch information
lbartoletti committed Sep 21, 2022
2 parents e79bd7d + 77eb9cb commit 4e6727c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/core/testqgsogrutils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ void TestQgsOgrUtils::ogrGeometryToQgsGeometry2_data()
QTest::newRow( "point25d" ) << QStringLiteral( "Point25D (1.1 2.2 3.3)" ) << static_cast< int >( QgsWkbTypes::PointZ );

QTest::newRow( "linestring" ) << QStringLiteral( "LineString (1.1 2.2, 3.3 4.4)" ) << static_cast< int >( QgsWkbTypes::LineString );
QTest::newRow( "linestringz" ) << QStringLiteral( "LineStringZ (1.1 2.2 3.3, 4.4 5.5 6.6)" ) << static_cast< int >( QgsWkbTypes::LineStringZ ); // ogr uses 25d for z
QTest::newRow( "linestringz" ) << QStringLiteral( "LineStringZ (1.1 2.2 3.3, 4.4 5.5 6.6)" ) << static_cast< int >( QgsWkbTypes::LineStringZ );
QTest::newRow( "linestringm" ) << QStringLiteral( "LineStringM (1.1 2.2 3.3, 4.4 5.5 6.6)" ) << static_cast< int >( QgsWkbTypes::LineStringM );
QTest::newRow( "linestringzm" ) << QStringLiteral( "LineStringZM (1.1 2.2 3.3 4.4, 5.5 6.6 7.7 8.8)" ) << static_cast< int >( QgsWkbTypes::LineStringZM );
QTest::newRow( "linestring25d" ) << QStringLiteral( "LineString25D (1.1 2.2 3.3, 4.4 5.5 6.6)" ) << static_cast< int >( QgsWkbTypes::LineStringZ );
Expand Down

0 comments on commit 4e6727c

Please sign in to comment.