Skip to content

Commit

Permalink
Make sure tests pass again
Browse files Browse the repository at this point in the history
  • Loading branch information
jassmith committed Jun 21, 2022
1 parent a80314e commit 81c3ba4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/core/src/data-editor/data-editor-input.test.tsx
Expand Up @@ -352,19 +352,19 @@ describe("data-editor-input", () => {

fireEvent.mouseDown(canvas, {
ctrlKey: true,
clientX: 10,
clientX: 20,
clientY: 36 + 32 * 3 + 16,
});

fireEvent.mouseMove(canvas, {
ctrlKey: true,
clientX: 10,
clientX: 20,
clientY: 36 + 32 * 3 + 16,
});

fireEvent.mouseUp(canvas, {
ctrlKey: true,
clientX: 10,
clientX: 20,
clientY: 36 + 32 * 3 + 16,
});

Expand Down Expand Up @@ -409,19 +409,19 @@ describe("data-editor-input", () => {

fireEvent.mouseDown(canvas, {
ctrlKey: true,
clientX: 10,
clientX: 20,
clientY: 36 + 32 * 3 + 16,
});

fireEvent.mouseMove(canvas, {
ctrlKey: true,
clientX: 10,
clientX: 20,
clientY: 36 + 32 * 3 + 16,
});

fireEvent.mouseUp(canvas, {
ctrlKey: true,
clientX: 10,
clientX: 20,
clientY: 36 + 32 * 3 + 16,
});

Expand Down

0 comments on commit 81c3ba4

Please sign in to comment.