Skip to content

Commit 8428bbc

Browse files
committed
Fix testing selection subtraction in box/lasso mode [1852]
- The Shift key wasn't specified in the drag event.
1 parent f0822d5 commit 8428bbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/jasmine/tests/select_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ describe('@flaky Test select box and lasso in general:', function() {
259259
})
260260
.then(function() {
261261
// sub selection
262-
drag([[219, 143], [219, 183]], {altKey: true});
262+
drag([[219, 143], [219, 183]], {shiftKey: true, altKey: true});
263263
}).then(function() {
264264
assertEventData(selectingData.points, [{
265265
curveNumber: 0,

0 commit comments

Comments
 (0)