Skip to content

Commit

Permalink
fixing linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
antriksh-9 authored Mar 11, 2024
1 parent c5e3784 commit 3e2b1a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/resolvers/Mutation/createOrganization.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ describe("resolvers -> Mutation -> createOrganization", () => {
it(`creates the organization without image and returns it`, async () => {
vi.spyOn(uploadImage, "uploadImage").mockImplementation(
async (newImagePath: string, imageAlreadyInDbPath: string) => ({
newImagePath,
imageAlreadyInDbPath,
newImagePath: newImagePath || "",
imageAlreadyInDbPath: imageAlreadyInDbPath || "",
}),
);
const args: MutationCreateOrganizationArgs = {
Expand Down

0 comments on commit 3e2b1a9

Please sign in to comment.