Refactor AND Fixed description Intersects and Within filters into ol.format.wfs

This commit is contained in:
cpsTinK
2016-08-03 13:18:56 +04:00
parent 9150fa2a60
commit 18101ad0e2
2 changed files with 35 additions and 30 deletions

View File

@@ -504,7 +504,7 @@ describe('ol.format.WFS', function() {
expect(serialized.firstElementChild).to.xmleql(ol.xml.parse(text));
});
it('creates an AND intersects filter', function() {
it('creates a intersects filter', function() {
var text =
'<wfs:Query xmlns:wfs="http://www.opengis.net/wfs" ' +
' typeName="area" srsName="EPSG:4326" ' +
@@ -542,7 +542,7 @@ describe('ol.format.WFS', function() {
expect(serialized.firstElementChild).to.xmleql(ol.xml.parse(text));
});
it('creates an AND within filter', function() {
it('creates a within filter', function() {
var text =
'<wfs:Query xmlns:wfs="http://www.opengis.net/wfs" ' +
' typeName="area" srsName="EPSG:4326" ' +