diff --git a/server/src/controllers/album.controller.spec.ts b/server/src/controllers/album.controller.spec.ts index 519d91b3c8..9ef28c5188 100644 --- a/server/src/controllers/album.controller.spec.ts +++ b/server/src/controllers/album.controller.spec.ts @@ -39,7 +39,7 @@ describe(AlbumController.name, () => { describe('GET /albums/slim', () => { it('should be an authenticated route', async () => { - await request(ctx.getHttpServer()).post('/albums/slim'); + await request(ctx.getHttpServer()).get('/albums/slim'); expect(ctx.authenticate).toHaveBeenCalled(); });