Remove opt_this param in ol/extent

This commit is contained in:
Frederic Junod
2019-04-08 13:39:42 +02:00
parent c20bdedcac
commit 187f58c1c3
3 changed files with 8 additions and 16 deletions

View File

@@ -239,13 +239,6 @@ describe('ol.extent', function() {
}
);
it('calls the callback with given scope', function() {
const extent = [1, 2, 3, 4];
const scope = {humpty: 'dumpty'};
_ol_extent_.forEachCorner(extent, callbackTrue, scope);
expect(callbackTrue.calledOn(scope)).to.be(true);
});
});
describe('getArea', function() {