fix: test
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Simon 2025-12-11 00:55:50 +01:00
parent 1675d66b67
commit 720f640229
Signed by: simon
GPG key ID: 40E7A58C4AA1EDB2
3 changed files with 5 additions and 5 deletions

View file

@ -51,7 +51,7 @@ defmodule MvWeb.MemberLive.IndexTest do
|> render_submit()
|> follow_redirect(conn, "/members")
assert has_element?(index_view, "#flash-group", "Mitglied erstellt erfolgreich")
assert has_element?(index_view, "#flash-group", "Mitglied wurde erfolgreich erstellt")
end
test "shows translated flash message after creating a member in English", %{conn: conn} do
@ -71,7 +71,7 @@ defmodule MvWeb.MemberLive.IndexTest do
|> render_submit()
|> follow_redirect(conn, "/members")
assert has_element?(index_view, "#flash-group", "Member create successfully")
assert has_element?(index_view, "#flash-group", "Member created successfully")
end
describe "sorting integration" do