Use ol.array instead of goog.array

This commit is contained in:
Frederic Junod
2016-02-04 14:19:17 +01:00
parent aedbf45c8c
commit 49b210973e
2 changed files with 5 additions and 5 deletions

View File

@@ -2658,7 +2658,7 @@ describe('ol.format.KML', function() {
});
it('creates a Point and a MultiPolygon for Alaska', function() {
var alaska = goog.array.find(features, function(feature) {
var alaska = ol.array.find(features, function(feature) {
return feature.get('name') === 'Alaska';
});
expect(alaska).to.be.an(ol.Feature);
@@ -2798,7 +2798,7 @@ describe('ol.format.KML', function() {
});
goog.require('goog.array');
goog.require('ol.array');
goog.require('goog.dom.xml');
goog.require('ol.Feature');
goog.require('ol.format.GeoJSON');