Skip to content

Commit 6cc2ecc

Browse files
committed
Remove extra parameter from toBeCloseTo
1 parent 39520c1 commit 6cc2ecc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/jasmine/tests/sankey_test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -816,8 +816,8 @@ describe('sankey tests', function() {
816816

817817
var g = d3Select('.hovertext');
818818
var pos = g.node().getBoundingClientRect();
819-
expect(pos.x).toBeCloseTo(279, -1.5, 'it should have correct x position');
820-
expect(pos.y).toBeCloseTo(500, -1.5, 'it should have correct y position');
819+
expect(pos.x).toBeCloseTo(279, -1.5);
820+
expect(pos.y).toBeCloseTo(500, -1.5);
821821
})
822822
.then(done, done.fail);
823823
});

0 commit comments

Comments
 (0)