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
test "empty atom field" do
form =
Post
|> Form.for_create(:create,
domain: Domain,
params: %{}
)
|> Form.submit!(
params: %{"inline_atom_field" => "", "custom_atom_field" => "", "text" => "text"}
)
Post
|> Form.for_create(:create,
domain: Domain,
params: %{}
)
|> Form.submit!(
params: %{"inline_atom_field" => "", "custom_atom_field" => "", "text" => "text"}
)
end
test "update_form marks touched by default" do