Skip to content

Commit

Permalink
Fix trusty build (QStringLiteral is Qt5; followup 9241e2d)
Browse files Browse the repository at this point in the history
  • Loading branch information
rldhont authored and jef-n committed Aug 28, 2018
1 parent 2210fd1 commit 28ae07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/app/testqgisappclipboard.cpp
Expand Up @@ -296,7 +296,7 @@ void TestQgisAppClipboard::pasteWkt()
QCOMPARE( features.at( 1 ).attributes().at( 0 ).toString(), QString( "3" ) );
QCOMPARE( features.at( 1 ).attributes().at( 1 ).toString(), QString( "c3" ) );
QCOMPARE( features.at( 1 ).attributes().at( 2 ).toString(), QString( "4" ) );
QCOMPARE( features.at( 2 ).constGeometry()->exportToWkt(), QStringLiteral( "Point (5 4)" ) );
QCOMPARE( features.at( 2 ).constGeometry()->exportToWkt(), QString( "Point (5 4)" ) );
QCOMPARE( features.at( 2 ).attributes().count(), 3 );
QCOMPARE( features.at( 2 ).attributes().at( 0 ).toString(), QString( "2" ) );
QCOMPARE( features.at( 2 ).attributes().at( 1 ).toString(), QString( "b2" ) );
Expand Down

0 comments on commit 28ae07a

Please sign in to comment.