File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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>" );
You can’t perform that action at this time.
0 commit comments