Skip to content

Commit

Permalink
Run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
charpeni committed Dec 18, 2024
1 parent 521b9d1 commit 71f4652
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/__tests__/QueryManager/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5075,7 +5075,7 @@ describe("QueryManager", () => {
(result) => {
expect(result.data).toEqual(secondReqData);
expect(consoleWarnSpy).toHaveBeenLastCalledWith(
'Unknown query %s requested in refetchQueries options.include array',
"Unknown query %s requested in refetchQueries options.include array",
"fakeQuery"
);
}
Expand Down Expand Up @@ -5148,7 +5148,7 @@ describe("QueryManager", () => {
})
.then(() => {
expect(consoleWarnSpy).toHaveBeenLastCalledWith(
'Unknown query %s requested in refetchQueries options.include array',
"Unknown query %s requested in refetchQueries options.include array",
"getAuthors"
);
})
Expand Down

0 comments on commit 71f4652

Please sign in to comment.