Other: Lint fixes

This commit is contained in:
James Houlahan
2022-10-27 11:14:36 +02:00
parent d4da325e57
commit 7e03de0a21
4 changed files with 4 additions and 12 deletions

View File

@ -27,7 +27,6 @@ import (
"github.com/ProtonMail/proton-bridge/v2/internal/certs"
"github.com/ProtonMail/proton-bridge/v2/internal/user"
"github.com/cucumber/godog"
"github.com/stretchr/testify/require"
"gitlab.protontech.ch/go/liteapi/server/backend"
)
@ -53,8 +52,8 @@ func (s *scenario) reset(tb testing.TB) {
s.t = newTestCtx(tb)
}
func (s *scenario) close(tb testing.TB) {
require.NoError(tb, s.t.close(context.Background()))
func (s *scenario) close(_ testing.TB) {
s.t.close(context.Background())
}
func TestFeatures(testingT *testing.T) {

View File

@ -247,7 +247,7 @@ func (t *testCtx) getLastError() error {
return nil
}
func (t *testCtx) close(ctx context.Context) error {
func (t *testCtx) close(ctx context.Context) {
for _, client := range t.imapClients {
if err := client.client.Logout(); err != nil {
logrus.WithError(err).Error("Failed to logout IMAP client")
@ -267,8 +267,6 @@ func (t *testCtx) close(ctx context.Context) error {
t.api.Close()
t.events.close()
return nil
}
type eventCollector struct {