diff --git a/src/modules/authentication/tests/integration/username.repository.spec.ts b/src/modules/authentication/tests/integration/username.repository.spec.ts index 55ea75a..18eb06a 100644 --- a/src/modules/authentication/tests/integration/username.repository.spec.ts +++ b/src/modules/authentication/tests/integration/username.repository.spec.ts @@ -74,7 +74,7 @@ describe('UsernameRepository', () => { }); }); - describe('findOne', () => { + describe('findByName', () => { it('should return a Username', async () => { await prismaService.username.create({ data: { @@ -84,9 +84,9 @@ describe('UsernameRepository', () => { }, }); - const username = await usernameRepository.findOne({ - username: 'john.doe@email.com', - }); + const username = await usernameRepository.findByName( + 'john.doe@email.com', + ); expect(username.id).toBe('john.doe@email.com'); }); @@ -184,7 +184,7 @@ describe('UsernameRepository', () => { const toDelete: UsernameEntity = await UsernameEntity.create( createUsernameProps, ); - await usernameRepository.delete(toDelete); + await usernameRepository.deleteUsername(toDelete); const count = await prismaService.username.count(); expect(count).toBe(0);