chore: remove unused logger ()

This commit is contained in:
Jason Rasmussen 2025-04-14 15:01:49 -04:00 committed by GitHub
commit b2753103c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 7 deletions
server/test

View file

@ -199,7 +199,7 @@ export const newTestService = <T extends BaseService>(
oauth: automock(OAuthRepository, { args: [loggerMock] }),
partner: automock(PartnerRepository, { strict: false }),
person: newPersonRepositoryMock(),
process: automock(ProcessRepository, { args: [loggerMock] }),
process: automock(ProcessRepository),
search: automock(SearchRepository, { args: [loggerMock], strict: false }),
// eslint-disable-next-line no-sparse-arrays
serverInfo: automock(ServerInfoRepository, { args: [, loggerMock], strict: false }),