test: remove unused variable in tests

This commit is contained in:
Zach Daniel 2024-06-24 22:16:39 -04:00
parent 291fa9ce93
commit 6164026962

View file

@ -59,15 +59,14 @@ defmodule AshPhoenix.FormTest do
end end
test "empty atom field" do test "empty atom field" do
form = Post
Post |> Form.for_create(:create,
|> Form.for_create(:create, domain: Domain,
domain: Domain, params: %{}
params: %{} )
) |> Form.submit!(
|> Form.submit!( params: %{"inline_atom_field" => "", "custom_atom_field" => "", "text" => "text"}
params: %{"inline_atom_field" => "", "custom_atom_field" => "", "text" => "text"} )
)
end end
test "update_form marks touched by default" do test "update_form marks touched by default" do