Sending queue : change a bit the logic to re-enable sending queue.

This commit is contained in:
ganfra 2024-06-19 12:56:04 +02:00
parent a12fa8d8a4
commit f98441c74d
2 changed files with 13 additions and 14 deletions

View file

@ -55,12 +55,13 @@ import org.junit.Test
runCurrent()
assert(setAllSendQueuesEnabledLambda)
.isCalledOnce()
.with(value(true))
.isCalledExactly(2)
.withSequence(
listOf(value(true)),
listOf(value(true)),
)
assert(setRoomSendQueueEnabledLambda)
.isCalledOnce()
.with(value(true))
assert(setRoomSendQueueEnabledLambda).isNeverCalled()
}
@Test