Fix signal backup daily schedule bug.

This commit is contained in:
Cody Henthorne
2025-09-15 15:49:10 -04:00
committed by Greyson Parrelli
parent 901a81fb74
commit 6a456a288d
4 changed files with 68 additions and 8 deletions

View File

@@ -15,4 +15,8 @@ class MockRandom(initialInts: List<Int>) : Random() {
override fun nextInt(): Int {
return nextInts.remove()
}
override fun nextInt(bound: Int): Int {
return nextInts.remove() % bound
}
}