Skip to content

Commit 7d8a3b1

Browse files
committed
1 parent 77e62b9 commit 7d8a3b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/src/core/testqgsexpression.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class TestQgsExpression: public QObject
8989
QTest::newRow( "string literal" ) << "'test'" << true;
9090
QTest::newRow( "column reference" ) << "my_col" << true;
9191
QTest::newRow( "quoted column" ) << "\"my col\"" << true;
92-
QTest::newRow( "unary minus" ) << "--3" << true;
92+
QTest::newRow( "unary minus" ) << "-(-3)" << true;
9393
QTest::newRow( "function" ) << "cos(0)" << true;
9494
QTest::newRow( "function2" ) << "atan2(0,1)" << true;
9595
QTest::newRow( "operator IN" ) << "x in (a,b)" << true;

0 commit comments

Comments
 (0)