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 @@ -359,13 +359,13 @@ void TestQgsRelationReferenceWidget::testIdentifyOnMap()
359
359
QTimer::singleShot ( 300 , [&] { loop.quit (); } );
360
360
loop.exec ();
361
361
QgsFeature feature;
362
- mLayer2 ->getFeatures ( QStringLiteral ( R"( pk = %1) " ).arg ( 11 ) ).nextFeature ( feature );
362
+ mLayer2 ->getFeatures ( QStringLiteral ( " pk = %1" ).arg ( 11 ) ).nextFeature ( feature );
363
363
QVERIFY ( feature.isValid () );
364
364
QCOMPARE ( feature.attribute ( QStringLiteral ( " pk" ) ).toInt (), 11 );
365
365
w.featureIdentified ( feature );
366
366
QCOMPARE ( w.mComboBox ->currentData ( Qt::DisplayRole ).toInt (), 11 );
367
367
368
- mLayer2 ->getFeatures ( QStringLiteral ( R"( pk = %1) " ).arg ( 10 ) ).nextFeature ( feature );
368
+ mLayer2 ->getFeatures ( QStringLiteral ( " pk = %1" ).arg ( 10 ) ).nextFeature ( feature );
369
369
QVERIFY ( feature.isValid () );
370
370
QCOMPARE ( feature.attribute ( QStringLiteral ( " pk" ) ).toInt (), 10 );
371
371
w.featureIdentified ( feature );
You can’t perform that action at this time.
0 commit comments