Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Dec 17, 2024
1 parent 9fd4048 commit 5dc7f77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/analysis/testqgsprocessingalgspt2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2118,7 +2118,7 @@ void TestQgsProcessingAlgsPt2::setMetadataFields()
QCOMPARE( layer->metadata().crs().authid(), QStringLiteral( "EPSG:4326" ) );

// ignore empty field
parameters[QStringLiteral( "TITLE" )] = QStringLiteral( "" );
parameters[QStringLiteral( "TITLE" )] = QLatin1String( "" );
parameters.insert( QStringLiteral( "IGNORE_EMPTY" ), true );

ok = false;
Expand All @@ -2139,7 +2139,7 @@ void TestQgsProcessingAlgsPt2::setMetadataFields()
QVERIFY( ok );

QCOMPARE( results.value( QStringLiteral( "OUTPUT" ) ), layer->id() );
QCOMPARE( layer->metadata().title(), QStringLiteral( "" ) );
QCOMPARE( layer->metadata().title(), QLatin1String( "" ) );
QCOMPARE( layer->metadata().abstract(), QStringLiteral( "Abstract" ) );
QCOMPARE( layer->metadata().fees(), QStringLiteral( "Enormous fee" ) );
QVERIFY( layer->metadata().crs().isValid() );
Expand Down

0 comments on commit 5dc7f77

Please sign in to comment.