Skip to content

Commit d447d3f

Browse files
committed
chore: fix lint
1 parent 0576b3f commit d447d3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/unit/guestbooks/GetGuestbookResponsesByGuestbookId.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('GetGuestbookResponsesByGuestbookId', () => {
5858
test('should throw ReadError when repository fails', async () => {
5959
const repository: IGuestbooksRepository = {} as IGuestbooksRepository
6060
repository.getGuestbookResponsesByGuestbookId = jest.fn().mockRejectedValue(new ReadError())
61-
const sut = new getGuestbookResponsesByGuestbookId(repository)
61+
const sut = new GetGuestbookResponsesByGuestbookId(repository)
6262

6363
await expect(sut.execute(guestbookId)).rejects.toThrow(ReadError)
6464
})

0 commit comments

Comments
 (0)