We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77e62b9 commit 7d8a3b1Copy full SHA for 7d8a3b1
tests/src/core/testqgsexpression.cpp
@@ -89,7 +89,7 @@ class TestQgsExpression: public QObject
89
QTest::newRow( "string literal" ) << "'test'" << true;
90
QTest::newRow( "column reference" ) << "my_col" << true;
91
QTest::newRow( "quoted column" ) << "\"my col\"" << true;
92
- QTest::newRow( "unary minus" ) << "--3" << true;
+ QTest::newRow( "unary minus" ) << "-(-3)" << true;
93
QTest::newRow( "function" ) << "cos(0)" << true;
94
QTest::newRow( "function2" ) << "atan2(0,1)" << true;
95
QTest::newRow( "operator IN" ) << "x in (a,b)" << true;
0 commit comments