Skip to content

Commit

Permalink
Fix test under proj < 6
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jan 27, 2021
1 parent d6c8133 commit 1047110
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -131,7 +131,7 @@ void TestQgsCoordinateReferenceSystemRegistry::addUserCrs()
QCOMPARE( registry->userCrsList().at( 1 ).name, QStringLiteral( "test2" ) );
QCOMPARE( registry->userCrsList().at( 1 ).proj, madeUpProjection );
QVERIFY( registry->userCrsList().at( 1 ).wkt.isEmpty() );
QCOMPARE( registry->userCrsList().at( 1 ).crs, userCrs );
QCOMPARE( registry->userCrsList().at( 1 ).crs.toProj(), userCrs.toProj() );
}

void TestQgsCoordinateReferenceSystemRegistry::changeUserCrs()
Expand Down

0 comments on commit 1047110

Please sign in to comment.