Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix travis build
  • Loading branch information
nyalldawson committed Dec 12, 2019
1 parent de109b6 commit b6e4632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/core/testqgscoordinatereferencesystem.cpp
Expand Up @@ -369,7 +369,7 @@ void TestQgsCoordinateReferenceSystem::createFromWktUnknown()
// When used with proj < 6, a lossy conversion to proj string is used
QCOMPARE( crs.toWkt(), wkt );
#endif
QCOMPARE( crs.srsid(), USER_CRS_START_ID + 1 );
QCOMPARE( crs.srsid(), static_cast< long >( USER_CRS_START_ID + 1 ) );
QCOMPARE( crs.authid(), QStringLiteral( "USER:100001" ) );
QCOMPARE( crs.mapUnits(), QgsUnitTypes::DistanceMeters );

Expand Down

0 comments on commit b6e4632

Please sign in to comment.