Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cd809a2

Browse files
committed
drop return
1 parent 70ec83a commit cd809a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/jasmine/tests/cartesian_interact_test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2048,12 +2048,12 @@ describe('axis zoom/pan and main plot zoom', function() {
20482048
trace1.y = [];
20492049
}
20502050

2051-
return Plotly.react(gd, [trace0, trace1], layout);
2051+
Plotly.react(gd, [trace0, trace1], layout);
20522052
});
20532053

20542054
gd.on('plotly_selected', function(d) {
20552055
selectedTracker.unshift(d);
2056-
return Plotly.react(gd, [trace0], layout);
2056+
Plotly.react(gd, [trace0], layout);
20572057
});
20582058
})
20592059
.then(_assert('base', {

0 commit comments

Comments
 (0)