chore(lint): satisfy line length lints

This commit is contained in:
Adriano Caloiaro 2025-02-13 10:08:04 -07:00 committed by Adriano Caloiaro
parent e6ad5d4c6f
commit fed55dc916

View file

@ -1144,7 +1144,11 @@ func TestProcessPendingJobs(t *testing.T) {
ctx := context.Background()
nq, err := neoq.New(ctx, neoq.WithBackend(postgres.Backend), postgres.WithConnectionString(connString), neoq.WithPendingJobCheckInterval(50*time.Millisecond))
nq, err := neoq.New(ctx,
neoq.WithBackend(postgres.Backend),
postgres.WithConnectionString(connString),
neoq.WithPendingJobCheckInterval(50*time.Millisecond),
)
if err != nil {
t.Fatal(err)
}