Enforce usage of TestScope.testScheduler

This commit is contained in:
Benoit Marty 2023-06-12 19:49:56 +02:00
parent 456e17de34
commit 9e73e70a22
6 changed files with 14 additions and 14 deletions

View file

@ -213,5 +213,5 @@ private fun TestScope.createPresenter(
): LeaveRoomPresenter = LeaveRoomPresenterImpl(
client = client,
roomMembershipObserver = roomMembershipObserver,
dispatchers = testCoroutineDispatchers(testScheduler, false),
dispatchers = testCoroutineDispatchers(false),
)