Navigation Menu

Skip to content

Commit

Permalink
[travis] Unblacklist expression test on osx
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Apr 29, 2017
1 parent 177bc99 commit 5fe6587
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .ci/travis/macos/blacklist.txt
Expand Up @@ -17,7 +17,6 @@ qgis_composerutilstest
qgis_composertablev2test
qgis_distanceareatest
qgis_diagramtest
qgis_expressiontest
qgis_fontmarkertest
qgis_labelingenginetest
qgis_legendrenderertest
Expand Down
2 changes: 1 addition & 1 deletion tests/src/core/testqgsexpression.cpp
Expand Up @@ -852,7 +852,7 @@ class TestQgsExpression: public QObject
QTest::newRow( "smooth null" ) << "smooth(NULL,5)" << false << QVariant();
QTest::newRow( "smooth point" ) << "geom_to_wkt(smooth(geom_from_wkt('POINT(1 2)'),10))" << false << QVariant( "Point (1 2)" );
QTest::newRow( "smooth line" ) << "geom_to_wkt(smooth(geometry:=geom_from_wkt('LineString(0 0, 5 0, 5 5)'),iterations:=1,offset:=0.2,min_length:=-1,max_angle:=180))" << false << QVariant( "LineString (0 0, 4 0, 5 1, 5 5)" );
QTest::newRow( "transform invalid" ) << "transform(make_point(0,0),'EPSG:4326','EPSG:28356')" << false << QVariant();
QTest::newRow( "transform invalid" ) << "transform(make_point(500,500),'EPSG:4326','EPSG:28356')" << false << QVariant();

// string functions
QTest::newRow( "lower" ) << "lower('HeLLo')" << false << QVariant( "hello" );
Expand Down

0 comments on commit 5fe6587

Please sign in to comment.