use emit instead of tryEmit

This commit is contained in:
Benoit Marty 2024-03-27 16:19:05 +01:00 committed by Benoit Marty
parent 8da435b514
commit a3cb7ab265

View file

@ -78,7 +78,7 @@ class TroubleshootTestSuite @Inject constructor(
}
}
private fun emitState() {
private suspend fun emitState() {
val states = tests.map { it.state.value }
val mainState = states.computeMainState()
when (mainState) {
@ -90,7 +90,7 @@ class TroubleshootTestSuite @Inject constructor(
}
else -> Unit
}
_state.tryEmit(
_state.emit(
TroubleshootTestSuiteState(
mainState = states.computeMainState(),
tests = states.toImmutableList()