diff --git a/packages/services/src/Domain/AsymmetricMessage/AsymmetricMessageService.spec.ts b/packages/services/src/Domain/AsymmetricMessage/AsymmetricMessageService.spec.ts index a33f06c8b..39dfad754 100644 --- a/packages/services/src/Domain/AsymmetricMessage/AsymmetricMessageService.spec.ts +++ b/packages/services/src/Domain/AsymmetricMessage/AsymmetricMessageService.spec.ts @@ -4,11 +4,9 @@ import { EncryptionProviderInterface } from './../Encryption/EncryptionProviderI import { GetUntrustedPayload } from './UseCase/GetUntrustedPayload' import { GetInboundMessages } from './UseCase/GetInboundMessages' import { GetOutboundMessages } from './UseCase/GetOutboundMessages' -import { SendOwnContactChangeMessage } from './UseCase/SendOwnContactChangeMessage' import { HandleRootKeyChangedMessage } from './UseCase/HandleRootKeyChangedMessage' import { GetTrustedPayload } from './UseCase/GetTrustedPayload' import { ReplaceContactData } from './../Contacts/UseCase/ReplaceContactData' -import { GetAllContacts } from './../Contacts/UseCase/GetAllContacts' import { FindContact } from './../Contacts/UseCase/FindContact' import { CreateOrEditContact } from './../Contacts/UseCase/CreateOrEditContact' import { MutatorClientInterface } from './../Mutator/MutatorClientInterface' @@ -42,12 +40,10 @@ describe('AsymmetricMessageService', () => { encryption = {} as jest.Mocked const createOrEditContact = {} as jest.Mocked const findContact = {} as jest.Mocked - const getAllContacts = {} as jest.Mocked const replaceContactData = {} as jest.Mocked const getTrustedPayload = {} as jest.Mocked const getVault = {} as jest.Mocked const handleRootKeyChangedMessage = {} as jest.Mocked - const sendOwnContactChangedMessage = {} as jest.Mocked const getOutboundMessagesUseCase = {} as jest.Mocked const getInboundMessagesUseCase = {} as jest.Mocked const getUntrustedPayload = {} as jest.Mocked @@ -68,12 +64,10 @@ describe('AsymmetricMessageService', () => { messageServer, createOrEditContact, findContact, - getAllContacts, replaceContactData, getTrustedPayload, getVault, handleRootKeyChangedMessage, - sendOwnContactChangedMessage, getOutboundMessagesUseCase, getInboundMessagesUseCase, getUntrustedPayload,