Skip to content

Commit 8ac4f89

Browse files
committed
fix: lint error
1 parent 6343e69 commit 8ac4f89

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/unit/guestbooks/GuestbooksRepository.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,9 @@ describe('GuestbooksRepository', () => {
169169
test('should return error result on error response', async () => {
170170
jest.spyOn(axios, 'get').mockRejectedValue(TestConstants.TEST_ERROR_RESPONSE)
171171

172-
await expect(sut.downloadGuestbookResponsesByDataverseId(collectionIdOrAlias)).rejects.toThrow(
173-
ReadError
174-
)
172+
await expect(
173+
sut.downloadGuestbookResponsesByDataverseId(collectionIdOrAlias)
174+
).rejects.toThrow(ReadError)
175175
})
176176
})
177177
})

0 commit comments

Comments
 (0)