Skip to content

Commit

Permalink
Fix PHP unit tests :)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdouchin committed Aug 21, 2024
1 parent 8f38499 commit d7629d4
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 @@ -213,9 +213,9 @@ public static function getParseFeatureData()
{
return array(
array('', '', '', ''),
array('type', 'type.test@@55', 'key,otherKey', ' AND ("key" = 'test' AND "otherKey" = 55)'),
array('type', 'type.test@@55,you shall not pass,type.name@@42', 'key,otherKey', ' AND ("key" = 'test' AND "otherKey" = 55) OR ("key" = 'name' AND "otherKey" = 42)'),
array('', 'type.test@@55', 'key,otherKey', ' AND ("key" = 'test' AND "otherKey" = 55)'),
array('type', 'type.test@@55', 'key,otherKey', ' AND ("key" = \'test\' AND "otherKey" = 55)'),
array('type', 'type.test@@55,you shall not pass,type.name@@42', 'key,otherKey', ' AND ("key" = \'test\' AND "otherKey" = 55) OR ("key" = \'name\' AND "otherKey" = 42)'),
array('', 'type.test@@55', 'key,otherKey', ' AND ("key" = \'test\' AND "otherKey" = 55)'),
);
}

Expand Down

0 comments on commit d7629d4

Please sign in to comment.