Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jassmith committed Jun 22, 2022
1 parent 6db9749 commit 906d59a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/core/src/data-editor/data-editor.test.tsx
Expand Up @@ -2429,7 +2429,7 @@ describe("data-editor", () => {
clientY: 16,
});

expect(spy).toBeCalledWith({ icon: "headerCode", title: "B", width: 160 }, 200);
expect(spy).toBeCalledWith({ icon: "headerCode", title: "B", width: 160 }, 200, 1);
});

test("Resize Column End Called", async () => {
Expand All @@ -2456,7 +2456,7 @@ describe("data-editor", () => {
clientY: 16,
});

expect(spy).toBeCalledWith({ icon: "headerCode", title: "B", width: 160 }, 200);
expect(spy).toBeCalledWith({ icon: "headerCode", title: "B", width: 160 }, 200, 1);
});

test("Resize Multiple Column", async () => {
Expand Down Expand Up @@ -2529,7 +2529,7 @@ describe("data-editor", () => {
clientY: 16,
});

expect(spy).toBeCalledWith({ icon: "headerCode", title: "B", width: 160 }, 200);
expect(spy).toBeCalledWith({ icon: "headerCode", title: "B", width: 160 }, 200, 1);
});

test("Drag reorder row", async () => {
Expand Down

0 comments on commit 906d59a

Please sign in to comment.