Fix a few linter warnings + gofmt + goimports

This commit is contained in:
fox.cpp 2022-06-23 14:34:57 +03:00
parent 75ac2a6f20
commit 80328b8dee
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
61 changed files with 132 additions and 68 deletions

View file

@ -1,4 +1,5 @@
//+build cgo,!no_sqlite3
//go:build cgo && !no_sqlite3
// +build cgo,!no_sqlite3
package blob
@ -40,8 +41,8 @@ func TestStore(t *testing.T, newStore func() module.BlobStore, cleanStore func(m
b, err := imapsql.New("sqlite3", ":memory:",
imapsql2.ExtBlobStore{Base: store}, imapsql.Opts{
PRNG: prng,
Log: testutils.Logger(t, "imapsql"),
PRNG: prng,
Log: testutils.Logger(t, "imapsql"),
},
)
if err != nil {