Merge pull request #1851 from twpayne/looser-tests

Don't compare floating point numbers for exact equality
This commit is contained in:
Tom Payne
2014-03-12 15:16:59 +01:00
+5 -5
View File
@@ -167,9 +167,9 @@ describe('ol.View2D', function() {
constrainResolution: false constrainResolution: false
} }
); );
expect(view.getResolution()).to.be(14.849242404917458); expect(view.getResolution()).to.roughlyEqual(14.849242404917458, 1e-9);
expect(view.getCenter()[0]).to.be(5200.000000000011); expect(view.getCenter()[0]).to.roughlyEqual(5200, 1e-9);
expect(view.getCenter()[1]).to.be(46300); expect(view.getCenter()[1]).to.roughlyEqual(46300, 1e-9);
}); });
}); });
@@ -196,8 +196,8 @@ describe('ol.View2D', function() {
[400, 400], [400, 400],
[300, 300] [300, 300]
); );
expect(view.getCenter()[0]).to.be(4585.78643762691); expect(view.getCenter()[0]).to.roughlyEqual(4585.78643762691, 1e-9);
expect(view.getCenter()[1]).to.be(46000); expect(view.getCenter()[1]).to.roughlyEqual(46000, 1e-9);
}); });
}); });
}); });