Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump golangci-lint to v1.56.1 #2842

Merged
merged 12 commits into from
Feb 13, 2024
Prev Previous commit
Next Next commit
Remove extra space
  • Loading branch information
gaby committed Feb 11, 2024
commit 7f21bfcccba9ef3924b2d9194745db1a7df62a7e
4 changes: 2 additions & 2 deletions app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ func Test_App_ShutdownWithContext(t *testing.T) {
ln := fasthttputil.NewInmemoryListener()

go func() {
require.NoError(t, app.Listener(ln))
require.NoError(t, app.Listener(ln))
}()

time.Sleep(1 * time.Second)
Expand Down Expand Up @@ -1543,7 +1543,7 @@ func Test_App_ReadTimeout(t *testing.T) {
time.Sleep(500 * time.Millisecond)

conn, err := net.Dial(NetworkTCP4, "127.0.0.1:4004")
require.NoError(t, err)
require.NoError(t, err)
defer func(conn net.Conn) {
err := conn.Close()
require.NoError(t, err)
Expand Down
Loading