Skip to content

Commit d9b61c9

Browse files
committed
mix format
1 parent 792174f commit d9b61c9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/typed_struct_test.exs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ defmodule Ash.TypedStructTest do
1313
use Ash.TypedStruct
1414

1515
typed_struct do
16-
field(:id, Ash.Type.UUID, allow_nil?: false, description: "The unique identifier for the user")
16+
field(:id, Ash.Type.UUID,
17+
allow_nil?: false,
18+
description: "The unique identifier for the user"
19+
)
20+
1721
field(:name, :string, allow_nil?: false, description: "The name of the user")
1822
field(:email, :string, constraints: [match: ~r/@/])
1923
field(:age, :integer, constraints: [min: 0, max: 150])

0 commit comments

Comments
 (0)