From afb9add911a590672717e823f5f432de978f0fbe Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Wed, 23 Jan 2013 22:12:17 -0700 Subject: [PATCH] Checked with third-party tool --- test/spec/ol/extent.test.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/spec/ol/extent.test.js b/test/spec/ol/extent.test.js index 4d80e64f03..83e20e15e6 100644 --- a/test/spec/ol/extent.test.js +++ b/test/spec/ol/extent.test.js @@ -64,14 +64,12 @@ describe('ol.Extent', function() { var destinationExtent = sourceExtent.transform(transformFn); expect(destinationExtent).not.toBeUndefined(); expect(destinationExtent).not.toBeNull(); - // FIXME check values with third-party tool expect(destinationExtent.minX).toBe(-45); expect(destinationExtent.minY).toBe(-60); expect(destinationExtent.maxX).toBe(15); expect(destinationExtent.maxY).toBe(30); }); - }); });