use emit instead of tryEmit
This commit is contained in:
parent
6aa3169496
commit
2bfde5e85d
1 changed files with 2 additions and 2 deletions
|
|
@ -78,7 +78,7 @@ class TroubleshootTestSuite @Inject constructor(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun emitState() {
|
private suspend fun emitState() {
|
||||||
val states = tests.map { it.state.value }
|
val states = tests.map { it.state.value }
|
||||||
val mainState = states.computeMainState()
|
val mainState = states.computeMainState()
|
||||||
when (mainState) {
|
when (mainState) {
|
||||||
|
|
@ -90,7 +90,7 @@ class TroubleshootTestSuite @Inject constructor(
|
||||||
}
|
}
|
||||||
else -> Unit
|
else -> Unit
|
||||||
}
|
}
|
||||||
_state.tryEmit(
|
_state.emit(
|
||||||
TroubleshootTestSuiteState(
|
TroubleshootTestSuiteState(
|
||||||
mainState = states.computeMainState(),
|
mainState = states.computeMainState(),
|
||||||
tests = states.toImmutableList()
|
tests = states.toImmutableList()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue