fix: lint formatting in storage test
Some checks failed
CI / ci (push) Successful in 1m7s
CI / e2e (push) Has been skipped
CI / deploy (push) Failing after 11s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-07 15:31:39 +02:00
parent d519a83cc4
commit be1197f3da

View File

@@ -100,7 +100,9 @@ describe("storage.service", () => {
const url = await getImageUrl("test-image.jpg");
expect(mockGetSignedUrl).toHaveBeenCalledTimes(1);
expect(url).toBe("https://s3.example.com/gearbox-images/test.jpg?signed=1");
expect(url).toBe(
"https://s3.example.com/gearbox-images/test.jpg?signed=1",
);
});
});