Rename _ol_control_Zoom_ to Zoom

This commit is contained in:
Tim Schaub
2017-12-14 13:07:36 -07:00
parent 4200f8e73e
commit fb8fb42d81
3 changed files with 12 additions and 12 deletions

View File

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