Rename _ol_Image_ to ImageWrapper

This commit is contained in:
Tim Schaub
2018-02-08 11:49:37 -07:00
parent e075a4fbca
commit 0d5026165f
7 changed files with 22 additions and 21 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import _ol_Image_ from '../../../../src/ol/Image.js';
import ImageWrapper from '../../../../src/ol/Image.js';
import Map from '../../../../src/ol/Map.js';
import View from '../../../../src/ol/View.js';
import Layer from '../../../../src/ol/layer/Layer.js';
@@ -28,7 +28,7 @@ describe('ol.renderer.Layer', function() {
const src = '';
const crossOrigin = '';
imageLoadFunction = sinon.spy();
image = new _ol_Image_(extent, resolution, pixelRatio, src, crossOrigin, imageLoadFunction);
image = new ImageWrapper(extent, resolution, pixelRatio, src, crossOrigin, imageLoadFunction);
});
describe('load IDLE image', function() {