From cf9fee51863bcf069cdd67471fe56f08fc3d9997 Mon Sep 17 00:00:00 2001 From: chatenium Date: Fri, 3 Apr 2026 09:18:59 +0200 Subject: [PATCH] Finished implementing PictureService --- src/services/pictureService.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/pictureService.test.ts b/src/services/pictureService.test.ts index f03354a..1d0b5c7 100644 --- a/src/services/pictureService.test.ts +++ b/src/services/pictureService.test.ts @@ -25,6 +25,6 @@ describe("PictureService", () => { it('should fetch comments', async () => { const comments = await service.getComments("") - expect(comments[0]).toBe("This is a comment") + expect(comments[0].comment).toBe("This is a comment") }) }) \ No newline at end of file