Remove useless "geometry" FeatureProperty

This commit is contained in:
Antoine Abt
2013-12-18 14:02:48 +01:00
parent 59df68fe68
commit add3cf2233
2 changed files with 3 additions and 4 deletions

View File

@@ -155,7 +155,7 @@ describe('ol.Feature', function() {
it('sets the default geometry', function() {
var feature = new ol.Feature();
feature.setGeometry(point);
expect(feature.get(ol.FeatureProperty.GEOMETRY)).to.be(point);
expect(feature.get('geometry')).to.be(point);
});
it('replaces previous default geometry', function() {