channeldb: add shouldFail param to ApplyMigrationWithDB

Add a shouldFail boolean parameter to the migtest ApplyMigrationWithDB
in order to make it easier to test migration failures.
This commit is contained in:
Elle Mouton
2022-12-23 10:10:27 +02:00
parent 0f6229d9e6
commit af076d8ff4
2 changed files with 8 additions and 3 deletions

View File

@@ -108,6 +108,7 @@ func TestMigrateRevocationLog(t *testing.T) {
beforeMigration,
afterMigration,
MigrateRevocationLog,
false,
)
})
if !success {
@@ -569,5 +570,6 @@ func BenchmarkMigration(b *testing.B) {
return MigrateRevocationLog(db)
},
false,
)
}