Rename _ol_control_Rotate_ to Rotate

This commit is contained in:
Tim Schaub
2017-12-14 13:02:20 -07:00
parent 6aaac599e0
commit 6e5171f559
3 changed files with 13 additions and 13 deletions

View File

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