Rename _ol_control_ZoomToExtent_ to ZoomToExtent

This commit is contained in:
Tim Schaub
2017-12-14 13:08:48 -07:00
parent 7a9a3651e1
commit 6b859f17ae
3 changed files with 10 additions and 10 deletions

View File

@@ -1,12 +1,12 @@
import _ol_control_ZoomToExtent_ from '../../../../src/ol/control/ZoomToExtent.js';
import ZoomToExtent from '../../../../src/ol/control/ZoomToExtent.js';
describe('ol.control.ZoomToExtent', function() {
describe('constructor', function() {
it('can be constructed without arguments', function() {
var instance = new _ol_control_ZoomToExtent_();
expect(instance).to.be.an(_ol_control_ZoomToExtent_);
var instance = new ZoomToExtent();
expect(instance).to.be.an(ZoomToExtent);
});
});