From 14773160e56fc26e75822dba8b4fdd3eb8052cab Mon Sep 17 00:00:00 2001 From: Matthew Johnston Date: Tue, 14 May 2024 20:26:07 -0500 Subject: [PATCH] Appease the lint gods --- test/ecto/integration/timestamps_test.exs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/ecto/integration/timestamps_test.exs b/test/ecto/integration/timestamps_test.exs index 03cbb20..734e161 100644 --- a/test/ecto/integration/timestamps_test.exs +++ b/test/ecto/integration/timestamps_test.exs @@ -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"