onBackupSuccess now doesn't need a boolean anymore

This commit is contained in:
Torsten Grote 2024-10-11 09:23:51 -03:00
parent 623eb331da
commit eb9dad798c
No known key found for this signature in database
GPG key ID: 3E5F77D92CF891FF

View file

@ -192,9 +192,6 @@ internal interface LargeBackupTestBase : LargeTestBase {
every { every {
spyBackupNotificationManager.onBackupSuccess(any(), any(), any()) spyBackupNotificationManager.onBackupSuccess(any(), any(), any())
} answers { } answers {
val success = firstArg<Boolean>()
assert(success) { "Backup failed." }
callOriginal() callOriginal()
completed.set(true) completed.set(true)
} }