Skip to content

Commit 1a685d4

Browse files
committed
appease eslint 🐄
1 parent 025b788 commit 1a685d4

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

test/jasmine/tests/click_test.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,8 @@ describe('Test click interactions:', function() {
530530

531531
return drag(100, 100, 200, 200, DBLCLICKDELAY / 2);
532532
}).then(function() {
533-
expect(gd.layout.xaxis.range).toBeCloseToArray([-2.6480169249531356,-1.920115790911955]);
534-
expect(gd.layout.yaxis.range).toBeCloseToArray([0.4372261777201992,1.2306899598686027]);
533+
expect(gd.layout.xaxis.range).toBeCloseToArray([-2.6480169249531356, -1.920115790911955]);
534+
expect(gd.layout.yaxis.range).toBeCloseToArray([0.4372261777201992, 1.2306899598686027]);
535535

536536
done();
537537
});
@@ -698,13 +698,13 @@ describe('Test click interactions:', function() {
698698
expect(gd.layout.yaxis.range).toBeCloseToArray(autoRangeY);
699699

700700
drag(93, 93, 393, 293).then(function() {
701-
expect(gd.layout.xaxis.range).toBeCloseToArray([-2.69897000,-0.515266602]);
702-
expect(gd.layout.yaxis.range).toBeCloseToArray([-0.30069513,1.2862324246]);
701+
expect(gd.layout.xaxis.range).toBeCloseToArray([-2.69897000, -0.515266602]);
702+
expect(gd.layout.yaxis.range).toBeCloseToArray([-0.30069513, 1.2862324246]);
703703

704704
return drag(93, 93, 393, 293);
705705
}).then(function() {
706-
expect(gd.layout.xaxis.range).toBeCloseToArray([-2.56671754,-1.644025966]);
707-
expect(gd.layout.yaxis.range).toBeCloseToArray([0.159513853,1.2174655634]);
706+
expect(gd.layout.xaxis.range).toBeCloseToArray([-2.56671754, -1.644025966]);
707+
expect(gd.layout.yaxis.range).toBeCloseToArray([0.159513853, 1.2174655634]);
708708

709709
done();
710710
});

test/jasmine/tests/range_slider_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ describe('the range slider', function() {
8787

8888
expect(+rangeSlider.getAttribute('data-max')).toBeCloseTo(+dataMaxStart + diff, 0);
8989
expect(+maskMax.getAttribute('width')).toBeCloseTo(-diff);
90-
testTranslate1D(handleMax, +dataMaxStart + diff)
90+
testTranslate1D(handleMax, +dataMaxStart + diff);
9191
}).then(done);
9292
});
9393

test/jasmine/tests/ternary_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ describe('ternary plots', function() {
187187
assertRange(gd, [0.231, 0.2, 0.11]);
188188

189189
drag([[383, 213], [293, 243]]);
190-
assertRange(gd, [0.4435,0.2462,0.1523]);
190+
assertRange(gd, [0.4435, 0.2462, 0.1523]);
191191

192192
doubleClick(pointPos[0], pointPos[1]).then(function() {
193193
assertRange(gd, [0, 0, 0]);

0 commit comments

Comments
 (0)