Skip to content

Commit

Permalink
Appease the lint gods
Browse files Browse the repository at this point in the history
  • Loading branch information
warmwaffles committed May 15, 2024
1 parent 44a1899 commit 1477316
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/ecto/integration/timestamps_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,12 @@ defmodule Ecto.Integration.TimestampsTest do
test "insert and fetch nil values" do
now = DateTime.utc_now()

product = insert_product(%{name: "Nil Date Test", approved_at: now, ordered_at: now})
product =
insert_product(%{
name: "Nil Date Test",
approved_at: now,
ordered_at: now
})

product = TestRepo.get(Product, product.id)
assert product.name == "Nil Date Test"
Expand Down

0 comments on commit 1477316

Please sign in to comment.