From 3e86d6e396c9534a0da25841e3c5cf758a89302b Mon Sep 17 00:00:00 2001 From: Daniel Ruf Date: Thu, 15 Feb 2018 07:56:54 +0100 Subject: [PATCH] revert GetDimensions() unit test change for IE11 --- test/javascript/util/box.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/javascript/util/box.js b/test/javascript/util/box.js index aedafed56..0f1073429 100644 --- a/test/javascript/util/box.js +++ b/test/javascript/util/box.js @@ -33,8 +33,8 @@ describe('Foundation box', function () { var dims = Foundation.Box.GetDimensions($("#rect-test")); - Math.round(dims.width).should.equal(200); // Math.round fix for IE 11 (probably because of rem) - Math.round(dims.height).should.equal(100); // Math.round fix for IE 11 (probably because of rem) + dims.width.should.equal(200); + dims.height.should.equal(100); }); it('parent height of element', function () { -- 2.47.2