diff --git a/test/spec/ol/feature.test.js b/test/spec/ol/feature.test.js index afe29368ec..7f2b5e195f 100644 --- a/test/spec/ol/feature.test.js +++ b/test/spec/ol/feature.test.js @@ -301,13 +301,6 @@ describe('ol.Feature', function() { }); - /** - * We should be able to make the assertion below, but the constructor - * calls setValues which calls setFoo when provided with 'foo'. This - * is different behavior than calling set('foo', 'bar'). - * See https://github.com/openlayers/ol3/issues/1672 - - it('does not get confused with "style" option to constructor', function() { var feature = new ol.Feature({ style: 'foo' @@ -316,8 +309,6 @@ describe('ol.Feature', function() { expect(feature.getStyle()).to.be(null); }); - */ - it('does not get confused with user set "style" property', function() { var feature = new ol.Feature(); feature.set('style', 'foo');