fix name collisions

This commit is contained in:
2023-03-30 22:23:54 -04:00
parent 550f6a6420
commit 65c70ca398
3 changed files with 5 additions and 5 deletions

View File

@ -414,7 +414,7 @@ defmodule CanneryWeb.PackLiveTest do
end
end
describe "Show pack with shot recorddd" do
describe "Show pack with shot record" do
setup [:register_and_log_in_user, :create_pack, :create_shot_record]
test "updates shot_record in listing",
@ -422,7 +422,7 @@ defmodule CanneryWeb.PackLiveTest do
{:ok, index_live, _html} = live(conn, Routes.pack_show_path(conn, :edit, pack))
assert index_live
|> element(~s/a[aria-label="Edit shot recordd of #{shot_record.count} shots"]/)
|> element(~s/a[aria-label="Edit shot record of #{shot_record.count} shots"]/)
|> render_click() =~ "Edit Shot Record"
assert_patch(

View File

@ -38,7 +38,7 @@ defmodule CanneryWeb.TypeLiveTest do
count: 20
}
@shot_record_attrs %{
notes: "some shot recorddd",
notes: "some shot record",
count: 20
}