Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
mdouchin committed Aug 21, 2024
1 parent d7629d4 commit 0c5c617
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/units/classes/Request/WFSRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ public static function getBuildQueryBaseData()
'geometryname' => 'none'
);
return array(
array($paramsComplete, $wfsFields, array('prop', 'name', 'key', 'geom', 'test'), ' SELECT "prop", "name", "key", "geom", "test", "geocol" AS "geosource" FROM table'),
array($paramsGeom, $wfsFields, array('prop', 'name', 'notProp', 'key', 'geom', 'test'), ' SELECT "prop", "name", "notProp", "key", "geom", "test", "geocol" AS "geosource" FROM table'),
array($paramsProp, $wfsFields, array('prop', 'name', 'key', 'geom', 'test'), ' SELECT "prop", "name", "key", "geom", "test" FROM table'),
array($paramsComplete, $wfsFields, array('"prop"', '"name"', '"key"', '"geom"', '"test"'), ' SELECT "prop", "name", "key", "geom", "test", "geocol" AS "geosource" FROM table'),
array($paramsGeom, $wfsFields, array('"prop"', '"name"', '"notProp"', '"key"', '"geom"', '"test"'), ' SELECT "prop", "name", "notProp", "key", "geom", "test", "geocol" AS "geosource" FROM table'),
array($paramsProp, $wfsFields, array('"prop"', '"name"', '"key"', '"geom"', '"test"'), ' SELECT "prop", "name", "key", "geom", "test" FROM table'),
);
}

Expand Down

0 comments on commit 0c5c617

Please sign in to comment.