Skip to content

Commit

Permalink
mix format !! #358
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed Apr 22, 2023
1 parent 5bd136b commit ebb5a94
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions priv/repo/seeds.exs
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,14 @@ if env == :test do
Repo.insert!(%ItemTag{item_id: item3.id, tag_id: tag3.id})

# Timers
{:ok, started} = NaiveDateTime.new(Date.utc_today(), Time.add(Time.utc_now(), -1))
{:ok, started} =
NaiveDateTime.new(Date.utc_today(), Time.add(Time.utc_now(), -1))

{:ok, _timer1} =
Timer.start(%{item_id: item1.id, person_id: person_id, start: started})

{:ok, _timer2} =
Timer.start(%{item_id: item2.id, person_id: person_id, start: started})
Timer.start(%{item_id: item2.id, person_id: person_id, start: started})

# List!
list1_data = %{name: "Shopping List", person_id: person_id, status: 2}
Expand Down

0 comments on commit ebb5a94

Please sign in to comment.