Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f9e90c3

Browse files
committedMar 20, 2019
fix test
1 parent 1612f85 commit f9e90c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tests/src/core/testqgsproperty.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,7 @@ void TestQgsProperty::colorRampTransformer()
12511251
25,
12521252
new QgsGradientColorRamp( QColor( 10, 20, 30 ), QColor( 200, 190, 180 ) ),
12531253
QColor( 100, 150, 200 ) );
1254-
QCOMPARE( t5.toExpression( "5+6" ), QStringLiteral( "coalesce(ramp_color('custom ramp',scale_linear(5+6, 15, 25, 0, 1), '#6496c8')" ) );
1254+
QCOMPARE( t5.toExpression( "5+6" ), QStringLiteral( "coalesce(ramp_color('custom ramp',scale_linear(5+6, 15, 25, 0, 1)), '#6496c8')" ) );
12551255
t5.setRampName( QStringLiteral( "my ramp" ) );
12561256
QCOMPARE( t5.toExpression( "5+6" ), QStringLiteral( "coalesce(ramp_color('my ramp',scale_linear(5+6, 15, 25, 0, 1), '#6496c8')" ) );
12571257
}

0 commit comments

Comments
 (0)
Please sign in to comment.