fix: fix warning of unused variable in UserLive.IndexTest
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Moritz 2026-01-30 00:10:01 +01:00
parent 28d134b2b0
commit 3a7e4000c0
Signed by: moritz
GPG key ID: 1020A035E5DD0824

View file

@ -297,7 +297,7 @@ defmodule MvWeb.UserLive.IndexTest do
test "navigation links point to correct pages", %{conn: conn} do test "navigation links point to correct pages", %{conn: conn} do
user = create_test_user(%{email: "navigate@example.com"}) user = create_test_user(%{email: "navigate@example.com"})
conn = conn_with_oidc_user(conn) conn = conn_with_oidc_user(conn)
{:ok, view, html} = live(conn, "/users") {:ok, _view, html} = live(conn, "/users")
# Check that user row contains link to show page # Check that user row contains link to show page
assert html =~ ~s(/users/#{user.id}) assert html =~ ~s(/users/#{user.id})