Skip to content

Commit 1477316

Browse files
committed
Appease the lint gods
1 parent 44a1899 commit 1477316

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/ecto/integration/timestamps_test.exs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,12 @@ defmodule Ecto.Integration.TimestampsTest do
126126
test "insert and fetch nil values" do
127127
now = DateTime.utc_now()
128128

129-
product = insert_product(%{name: "Nil Date Test", approved_at: now, ordered_at: now})
129+
product =
130+
insert_product(%{
131+
name: "Nil Date Test",
132+
approved_at: now,
133+
ordered_at: now
134+
})
130135

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

0 commit comments

Comments
 (0)