Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove extra parameter from toBeCloseTo
  • Loading branch information
marthacryan committed Jan 21, 2025
commit 6cc2ecc18da9e9b5f2100b9e6677d366d30fe9a0
4 changes: 2 additions & 2 deletions test/jasmine/tests/sankey_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -816,8 +816,8 @@ describe('sankey tests', function() {

var g = d3Select('.hovertext');
var pos = g.node().getBoundingClientRect();
expect(pos.x).toBeCloseTo(279, -1.5, 'it should have correct x position');
expect(pos.y).toBeCloseTo(500, -1.5, 'it should have correct y position');
expect(pos.x).toBeCloseTo(279, -1.5);
expect(pos.y).toBeCloseTo(500, -1.5);
})
.then(done, done.fail);
});
Expand Down
Loading