Skip to content

Commit e21cc78

Browse files
committed
Fix failing test
1 parent 1bd87e8 commit e21cc78

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/src/core/testqgsogcutils.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,18 +289,18 @@ void TestQgsOgcUtils::testExpressionToOgcFilter_data()
289289
"</ogc:And>"
290290
"</ogc:Filter>" );
291291

292-
QTest::newRow( "is null" ) << QString( "X IS NULL" ) << QString(
292+
QTest::newRow( "is null" ) << QString( "A IS NULL" ) << QString(
293293
"<ogc:Filter xmlns:ogc=\"http://www.opengis.net/ogc\">"
294294
"<ogc:PropertyIsNull>"
295-
"<ogc:PropertyName>X</ogc:PropertyName>"
295+
"<ogc:PropertyName>A</ogc:PropertyName>"
296296
"</ogc:PropertyIsNull>"
297297
"</ogc:Filter>" );
298298

299-
QTest::newRow( "is not null" ) << QString( "X IS NOT NULL" ) << QString(
299+
QTest::newRow( "is not null" ) << QString( "A IS NOT NULL" ) << QString(
300300
"<ogc:Filter xmlns:ogc=\"http://www.opengis.net/ogc\">"
301301
"<ogc:Not>"
302302
"<ogc:PropertyIsNull>"
303-
"<ogc:PropertyName>X</ogc:PropertyName>"
303+
"<ogc:PropertyName>A</ogc:PropertyName>"
304304
"</ogc:PropertyIsNull>"
305305
"</ogc:Not>"
306306
"</ogc:Filter>" );

0 commit comments

Comments
 (0)