Rename _ol_layer_Heatmap_ to Heatmap

This commit is contained in:
Frederic Junod
2017-12-18 12:52:07 +01:00
parent b35d464cc8
commit d35b4b8be4
3 changed files with 28 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
import _ol_layer_Heatmap_ from '../../../../src/ol/layer/Heatmap.js';
import HeatmapLayer from '../../../../src/ol/layer/Heatmap.js';
describe('ol.layer.Heatmap', function() {
@@ -6,8 +6,8 @@ describe('ol.layer.Heatmap', function() {
describe('constructor', function() {
it('can be constructed without arguments', function() {
var instance = new _ol_layer_Heatmap_();
expect(instance).to.be.an(_ol_layer_Heatmap_);
var instance = new HeatmapLayer();
expect(instance).to.be.an(HeatmapLayer);
});
});