diff --git a/lib/cannery/mailer.ex b/lib/cannery/mailer.ex
index abc7b5aa..d3737ff7 100644
--- a/lib/cannery/mailer.ex
+++ b/lib/cannery/mailer.ex
@@ -35,6 +35,8 @@ defmodule Cannery.Mailer do
"""
@spec deliver_update_email_instructions(User.t(), String.t()) :: Job.t()
def deliver_update_email_instructions(%User{id: user_id}, url) do
- %{email: :update_email, user_id: user_id, attrs: %{url: url}} |> EmailWorker.new() |> Oban.insert!()
+ %{email: :update_email, user_id: user_id, attrs: %{url: url}}
+ |> EmailWorker.new()
+ |> Oban.insert!()
end
end
diff --git a/lib/cannery_web/live/ammo_type_live/index.html.heex b/lib/cannery_web/live/ammo_type_live/index.html.heex
index 666f334c..b31f4e2e 100644
--- a/lib/cannery_web/live/ammo_type_live/index.html.heex
+++ b/lib/cannery_web/live/ammo_type_live/index.html.heex
@@ -50,12 +50,12 @@
<%= live_redirect to: Routes.ammo_type_show_path(@socket, :show, ammo_type),
class: "text-primary-500 link" do %>
-
+
<% end %>
<%= live_patch to: Routes.ammo_type_index_path(@socket, :edit, ammo_type),
class: "text-primary-500 link" do %>
-
+
<% end %>
<%= link to: "#",
diff --git a/test/cannery/activity_log_test.exs b/test/cannery/activity_log_test.exs
index 404cc8aa..c314ab4f 100644
--- a/test/cannery/activity_log_test.exs
+++ b/test/cannery/activity_log_test.exs
@@ -9,8 +9,7 @@ defmodule Cannery.ActivityLogTest do
alias Cannery.{
ActivityLog,
ActivityLog.ShotGroup,
- Ammo,
- Containers
+ Ammo
}
@moduletag :activity_log_test
@@ -87,13 +86,10 @@ defmodule Cannery.ActivityLogTest do
end
test "create_shot_group/1 does not remove more than ammo group amount",
- %{
- current_user: current_user,
- ammo_group: %{id: ammo_group_id, count: org_count} = ammo_group
- } do
+ %{current_user: current_user, ammo_group: %{id: ammo_group_id} = ammo_group} do
valid_attrs = %{"count" => 20, "date" => ~D[2022-02-13], "notes" => "some notes"}
- assert {:ok, %ShotGroup{} = shot_group} =
+ assert {:ok, %ShotGroup{}} =
ActivityLog.create_shot_group(valid_attrs, current_user, ammo_group)
ammo_group = ammo_group_id |> Ammo.get_ammo_group!(current_user)
@@ -115,7 +111,7 @@ defmodule Cannery.ActivityLogTest do
test "update_shot_group/2 with valid data updates the shot_group and ammo_group",
%{
shot_group: shot_group,
- ammo_group: %{id: ammo_group_id} = ammo_group,
+ ammo_group: %{id: ammo_group_id},
current_user: current_user
} do
assert {:ok, %ShotGroup{} = shot_group} =
diff --git a/test/cannery/containers_test.exs b/test/cannery/containers_test.exs
index 5e3f309c..9d9a4e90 100644
--- a/test/cannery/containers_test.exs
+++ b/test/cannery/containers_test.exs
@@ -5,7 +5,7 @@ defmodule Cannery.ContainersTest do
use Cannery.DataCase
alias Cannery.Containers
- alias Cannery.{Accounts.User, Containers.Container}
+ alias Cannery.{Containers.Container}
alias Ecto.Changeset
@moduletag :containers_test
@@ -41,8 +41,7 @@ defmodule Cannery.ContainersTest do
assert Containers.get_container!(container.id, current_user) == container
end
- test "create_container/1 with valid data creates a container",
- %{current_user: current_user, container: container} do
+ test "create_container/1 with valid data creates a container", %{current_user: current_user} do
assert {:ok, %Container{} = container} =
@valid_attrs |> Containers.create_container(current_user)