Test DefaultWorkManagerScheduler
This commit is contained in:
parent
9c7ba58114
commit
6ef86cdda9
5 changed files with 180 additions and 7 deletions
|
|
@ -81,8 +81,6 @@ class InMemorySessionStore(
|
|||
}
|
||||
|
||||
override suspend fun removeSession(sessionId: String) {
|
||||
val currentList = sessionDataListFlow.value.toMutableList()
|
||||
currentList.removeAll { it.userId == sessionId }
|
||||
sessionDataListFlow.value = currentList
|
||||
sessionDataListFlow.value = sessionDataListFlow.value.filter { it.userId != sessionId }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue