Skip to content

Commit

Permalink
Fix test results
Browse files Browse the repository at this point in the history
  • Loading branch information
geographika committed Aug 6, 2021
1 parent 839c8cf commit a6c3516
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/spec/GeoExt/data/store/WfsFeatures.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ describe('GeoExt.data.store.WfsFeatures', function() {

var store = Ext.create('GeoExt.data.store.WfsFeatures', {
url: url,
pageSize: 25,
count: 25,
srsName: 'EPSG:3857',
propertyName: 'FID'
});
Expand All @@ -89,10 +89,10 @@ describe('GeoExt.data.store.WfsFeatures', function() {

expect(params.startIndex).to.be(0);
expect(params.count).to.be(25);
expect(params.propertyName).to.be('FID');
expect(params.srsName).to.be('EPSG:3857');
expect(params.sortBy).to.be('FID ASC');
expect(params.filter).to.be(undefined);

expect(params.sortBy).to.be(undefined);
});
});

Expand Down

0 comments on commit a6c3516

Please sign in to comment.