feat: migration to phoenix 1.8 - fix formatting
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Moritz 2025-07-17 17:43:07 +02:00
parent c2cb75a32b
commit 2255dfbf6e
Signed by: moritz
GPG key ID: 1020A035E5DD0824
3 changed files with 37 additions and 37 deletions

View file

@ -44,12 +44,12 @@ defmodule MvWeb.MemberLive.IndexTest do
}
# Submit form and follow the redirect to get the flash message
{:ok, index_view, _html} =
{:ok, index_view, _html} =
form_view
|> form("#member-form", form_data)
|> render_submit()
|> follow_redirect(conn, "/members")
assert has_element?(index_view, "#flash-group", "Mitglied erstellt erfolgreich")
end
@ -65,12 +65,12 @@ defmodule MvWeb.MemberLive.IndexTest do
}
# Submit form and follow the redirect to get the flash message
{:ok, index_view, _html} =
{:ok, index_view, _html} =
form_view
|> form("#member-form", form_data)
|> render_submit()
|> follow_redirect(conn, "/members")
assert has_element?(index_view, "#flash-group", "Member create successfully")
end
end