Move requires to end of the file to ensure tests run even if goog.require fails

This commit is contained in:
Tom Payne
2012-09-26 19:40:09 +02:00
parent d6f6b828f1
commit 228e5a8dbf
12 changed files with 38 additions and 38 deletions

View File

@@ -1,9 +1,3 @@
goog.require('ol.Coordinate');
goog.require('ol.Extent');
goog.require('ol.Size');
goog.require('ol.TileCoord');
goog.require('ol.TileGrid');
describe('ol.TileGrid', function() {
var extent;
var resolutions;
@@ -466,3 +460,9 @@ describe('ol.TileGrid', function() {
});
});
goog.require('ol.Coordinate');
goog.require('ol.Extent');
goog.require('ol.Size');
goog.require('ol.TileCoord');
goog.require('ol.TileGrid');