mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Fix a few minor warnings
This commit is contained in:
parent
31265e3371
commit
a1fc99d08c
4 changed files with 10 additions and 5 deletions
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue