Rename _ol_TileCache_ to TileCache

This commit is contained in:
Frederic Junod
2017-12-17 09:07:20 +01:00
parent f96a94fbcd
commit f4305de074
4 changed files with 11 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
import _ol_Tile_ from '../../../src/ol/Tile.js';
import _ol_TileCache_ from '../../../src/ol/TileCache.js';
import TileCache from '../../../src/ol/TileCache.js';
import _ol_tilecoord_ from '../../../src/ol/tilecoord.js';
@@ -16,7 +16,7 @@ describe('ol.TileCache', function() {
new _ol_Tile_([2, 2, 0]),
new _ol_Tile_([2, 3, 0]) // newest tile at z: 2
];
var cache = new _ol_TileCache_();
var cache = new TileCache();
sinon.spy(tiles[0], 'dispose');