Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fadd617 commit 4a623d5Copy full SHA for 4a623d5
test/jasmine/tests/splom_test.js
@@ -827,11 +827,11 @@ describe('Test splom drag:', function() {
827
function _assertRanges(msg, xRanges, yRanges) {
828
xaxes.forEach(function(n, i) {
829
expect(gd._fullLayout[n].range)
830
- .toBeCloseToArray(xRanges[i], 1, n + ' range - ' + msg);
+ .toBeCloseToArray(xRanges[i], 0.5, n + ' range - ' + msg);
831
});
832
yaxes.forEach(function(n, i) {
833
834
- .toBeCloseToArray(yRanges[i], 1, n + ' range - ' + msg);
+ .toBeCloseToArray(yRanges[i], 0.5, n + ' range - ' + msg);
835
836
}
837
0 commit comments