mirror of
https://github.com/acaloiaro/neoq
synced 2026-07-21 10:12:18 +00:00
chore(lint): satisfy line length lints
This commit is contained in:
parent
e6ad5d4c6f
commit
fed55dc916
1 changed files with 5 additions and 1 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue