Skip to content

Commit 28ae07a

Browse files
rldhontjef-n
authored andcommittedAug 28, 2018
Fix trusty build (QStringLiteral is Qt5; followup 9241e2d)
1 parent 2210fd1 commit 28ae07a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tests/src/app/testqgisappclipboard.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ void TestQgisAppClipboard::pasteWkt()
296296
QCOMPARE( features.at( 1 ).attributes().at( 0 ).toString(), QString( "3" ) );
297297
QCOMPARE( features.at( 1 ).attributes().at( 1 ).toString(), QString( "c3" ) );
298298
QCOMPARE( features.at( 1 ).attributes().at( 2 ).toString(), QString( "4" ) );
299-
QCOMPARE( features.at( 2 ).constGeometry()->exportToWkt(), QStringLiteral( "Point (5 4)" ) );
299+
QCOMPARE( features.at( 2 ).constGeometry()->exportToWkt(), QString( "Point (5 4)" ) );
300300
QCOMPARE( features.at( 2 ).attributes().count(), 3 );
301301
QCOMPARE( features.at( 2 ).attributes().at( 0 ).toString(), QString( "2" ) );
302302
QCOMPARE( features.at( 2 ).attributes().at( 1 ).toString(), QString( "b2" ) );

0 commit comments

Comments
 (0)
Please sign in to comment.