From da10988ffd581ac88b62a5e16903ca9b136ae6e8 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Sat, 28 Jan 2017 16:08:23 +0100 Subject: [PATCH] Restore test values --- test/spec/ol/coordinate.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/spec/ol/coordinate.test.js b/test/spec/ol/coordinate.test.js index de2fe25236..526ab837c4 100644 --- a/test/spec/ol/coordinate.test.js +++ b/test/spec/ol/coordinate.test.js @@ -210,9 +210,9 @@ describe('ol.coordinate', function() { expect(got).to.be(expected); }); it('formats with given fractional digits, if passed', function() { - var coord = [7.85, 47.983201]; + var coord = [7.85, 47.983333]; var got = ol.coordinate.toStringHDMS(coord, 3); - var expected = '47° 58′ 59.524″ N 7° 51′ 00.000″ E'; + var expected = '47° 58′ 59.999″ N 7° 51′ 00.000″ E'; expect(got).to.be(expected); }); });