Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamadJaara committed Dec 23, 2024
1 parent 1a60cb1 commit 4f11f29
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@ class CallManagerTest {
@Mock
private val callRepository = mock(CallRepository::class)

@Mock
private val userRepository = mock(UserRepository::class)

@Mock
private val messageSender = mock(MessageSender::class)

Expand Down Expand Up @@ -120,7 +117,6 @@ class CallManagerTest {
callManagerImpl = CallManagerImpl(
calling = calling,
callRepository = callRepository,
userRepository = userRepository,
currentClientIdProvider = currentClientIdProvider,
selfConversationIdProvider = selfConversationIdProvider,
conversationRepository = conversationRepository,
Expand All @@ -137,7 +133,8 @@ class CallManagerTest {
kaliumConfigs = kaliumConfigs,
mediaManagerService = mediaManagerService,
flowManagerService = flowManagerService,
createAndPersistRecentlyEndedCallMetadata = createAndPersistRecentlyEndedCallMetadata
createAndPersistRecentlyEndedCallMetadata = createAndPersistRecentlyEndedCallMetadata,
selfUserId = UserId
)
}

Expand Down

0 comments on commit 4f11f29

Please sign in to comment.