Skip to content

Commit

Permalink
Remove array type for missing in optimistic test
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Jan 24, 2025
1 parent 464d1b1 commit 8a26e33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/__tests__/optimistic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1945,7 +1945,7 @@ describe("optimistic mutation results", () => {
expect(realisticDiffs).toEqual([
{
complete: false,
missing: [expect.anything()],
missing: expect.anything(),
result: {},
},
]);
Expand Down Expand Up @@ -2136,7 +2136,7 @@ describe("optimistic mutation results", () => {
expect(realisticDiffs).toEqual([
{
complete: false,
missing: [expect.anything()],
missing: expect.anything(),
result: {},
},
{
Expand Down

0 comments on commit 8a26e33

Please sign in to comment.