Remove use of goog.array.forEach
This commit is contained in:
@@ -11,8 +11,8 @@ describe('ol.proj', function() {
|
||||
|
||||
function _testAllEquivalent(codes) {
|
||||
var projections = codes.map(ol.proj.get);
|
||||
goog.array.forEach(projections, function(source) {
|
||||
goog.array.forEach(projections, function(destination) {
|
||||
projections.forEach(function(source) {
|
||||
projections.forEach(function(destination) {
|
||||
expect(ol.proj.equivalent(source, destination)).to.be.ok();
|
||||
});
|
||||
});
|
||||
@@ -522,7 +522,6 @@ describe('ol.proj', function() {
|
||||
});
|
||||
|
||||
|
||||
goog.require('goog.array');
|
||||
goog.require('ol.proj');
|
||||
goog.require('ol.proj.Projection');
|
||||
goog.require('ol.proj.Units');
|
||||
|
||||
Reference in New Issue
Block a user