File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ void TestQgisAppClipboard::pasteWkt()
218
218
219
219
// be sure parsing does not consider attached parameters that
220
220
// can change geometryType as in https://issues.qgis.org/issues/16870
221
- mQgisApp ->clipboard ()->setText ( QStringLiteral ( " POINT (111 30)\t GoodFieldValue\n POINT (125 10)\t (WrongFieldValue)" ) );
221
+ mQgisApp ->clipboard ()->setText ( " POINT (111 30)\t GoodFieldValue\n POINT (125 10)\t (WrongFieldValue)" );
222
222
223
223
features = mQgisApp ->clipboard ()->copyOf ();
224
224
QCOMPARE ( features.length (), 2 );
@@ -237,7 +237,7 @@ void TestQgisAppClipboard::pasteWkt()
237
237
QCOMPARE ( point->y (), 10.0 );
238
238
239
239
// only fields => no geom so no feature list is returned
240
- mQgisApp ->clipboard ()->setText ( QStringLiteral ( " MNL\t 11\t 282\t km\t\n MNL\t 11\t 347.80000000000001\t km\t " ) );
240
+ mQgisApp ->clipboard ()->setText ( " MNL\t 11\t 282\t km\t\n MNL\t 11\t 347.80000000000001\t km\t " );
241
241
features = mQgisApp ->clipboard ()->copyOf ();
242
242
QCOMPARE ( features.length (), 0 );
243
243
}
You can’t perform that action at this time.
0 commit comments