Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix tests
  • Loading branch information
alexbruy authored and wonder-sk committed May 2, 2023
1 parent d0e0779 commit fb10dfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -40,6 +40,7 @@ class QgsPointCloudLayer;
/**
* Processing point cloud expression line edit.
* \ingroup gui
* \class QgsProcessingPointCloudExpressionLineEdit
* \warning Not part of stable API and may change in future QGIS releases.
* \since QGIS 3.32
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/src/analysis/testqgsprocessingpdalalgs.cpp
Expand Up @@ -1134,7 +1134,7 @@ void TestQgsProcessingPdalAlgs::filter()
<< QStringLiteral( "--output=%1" ).arg( outputPointCloud )
);

parameters.insert( QStringLiteral( "FILTER_EXPRESSION" ), QStringLiteral( "Classification == 7 || Classification == 8" ) );
parameters.insert( QStringLiteral( "FILTER_EXPRESSION" ), QStringLiteral( "Classification = 7 OR Classification = 8" ) );
args = alg->createArgumentLists( parameters, *context, &feedback );
QCOMPARE( args, QStringList() << QStringLiteral( "translate" )
<< QStringLiteral( "--input=%1" ).arg( mPointCloudLayerPath )
Expand Down

0 comments on commit fb10dfd

Please sign in to comment.