Coroutine: remove diffUpdateDispatcher, not used anymore

This commit is contained in:
ganfra 2023-07-11 11:40:55 +02:00
parent 288ebab4ac
commit c2c81d3747
4 changed files with 0 additions and 9 deletions

View file

@ -37,12 +37,10 @@ fun TestScope.testCoroutineDispatchers(
io = UnconfinedTestDispatcher(testScheduler),
computation = UnconfinedTestDispatcher(testScheduler),
main = UnconfinedTestDispatcher(testScheduler),
diffUpdateDispatcher = UnconfinedTestDispatcher(testScheduler),
)
false -> CoroutineDispatchers(
io = StandardTestDispatcher(testScheduler),
computation = StandardTestDispatcher(testScheduler),
main = StandardTestDispatcher(testScheduler),
diffUpdateDispatcher = StandardTestDispatcher(testScheduler),
)
}