Fix a few minor warnings

This commit is contained in:
fox.cpp 2021-09-22 23:32:30 +03:00
parent 31265e3371
commit a1fc99d08c
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
4 changed files with 10 additions and 5 deletions

View file

@ -52,7 +52,9 @@ func TestStore(t *testing.T, newStore func() module.BlobStore, cleanStore func(m
}
cleanBackend := func(bi backendtests.Backend) {
b := bi.(testBack)
b.Backend.(*imapsql.Backend).Close()
if err := b.Backend.(*imapsql.Backend).Close(); err != nil {
panic(err)
}
cleanStore(b.ExtStore)
}