Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Laetitia committed May 19, 2022
1 parent 4d3891e commit 39d39ba
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/queuetopia/test/factories.ex
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
defmodule Queuetopia.Factories do
alias Queuetopia.Queue.Job

def build(:job, attrs) do
%Job{
sequence: System.unique_integer([:positive]),,
sequence: System.unique_integer([:positive]),
scope: "scope_#{System.unique_integer([:positive])}",
queue: "queue_#{System.unique_integer([:positive])}",
performer: "performer",
action: "action_#{System.unique_integer([:positive])}",
params: %{},
scheduled_at: utc_now(),
scheduled_at: DateTime.utc_now(),
timeout: 5_000,
max_backoff: 0,
max_attempts: 20
Expand Down

0 comments on commit 39d39ba

Please sign in to comment.