mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-21 22:11:41 +01:00
channeldb: mark ApplyMigration as a test helper
With this change, errors from migrations will have the proper local line number.
This commit is contained in:
parent
db23e34f74
commit
c6a8816043
1 changed files with 4 additions and 0 deletions
|
@ -41,6 +41,8 @@ func ApplyMigration(t *testing.T,
|
|||
beforeMigration, afterMigration, migrationFunc func(tx kvdb.RwTx) error,
|
||||
shouldFail bool) {
|
||||
|
||||
t.Helper()
|
||||
|
||||
cdb, cleanUp, err := MakeDB()
|
||||
defer cleanUp()
|
||||
if err != nil {
|
||||
|
@ -55,6 +57,8 @@ func ApplyMigration(t *testing.T,
|
|||
}
|
||||
|
||||
defer func() {
|
||||
t.Helper()
|
||||
|
||||
if r := recover(); r != nil {
|
||||
err = newError(r)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue