fixes test warnings
This commit is contained in:
		| @@ -11,7 +11,7 @@ defmodule CanneryWeb.AmmoGroupLiveTest do | ||||
|   @moduletag :ammo_group_live_test | ||||
|   @create_attrs %{count: 42, notes: "some notes", price_paid: 120.5} | ||||
|   @update_attrs %{count: 43, notes: "some updated notes", price_paid: 456.7} | ||||
|   @invalid_attrs %{count: -1, notes: nil, price_paid: nil} | ||||
|   # @invalid_attrs %{count: -1, notes: nil, price_paid: nil} | ||||
|  | ||||
|   defp create_ammo_group(%{current_user: current_user}) do | ||||
|     ammo_type = ammo_type_fixture(current_user) | ||||
|   | ||||
| @@ -11,7 +11,7 @@ defmodule CanneryWeb.InviteLiveTest do | ||||
|   @moduletag :invite_live_test | ||||
|   @create_attrs %{"name" => "some name"} | ||||
|   @update_attrs %{"name" => "some updated name"} | ||||
|   @invalid_attrs %{"name" => nil} | ||||
|   # @invalid_attrs %{"name" => nil} | ||||
|  | ||||
|   describe "Index" do | ||||
|     setup [:register_and_log_in_user] | ||||
|   | ||||
| @@ -11,7 +11,7 @@ defmodule CanneryWeb.RangeLiveTest do | ||||
|   @moduletag :range_live_test | ||||
|   @create_attrs %{"ammo_left" => 5, "notes" => "some notes"} | ||||
|   @update_attrs %{"count" => 16, "notes" => "some updated notes"} | ||||
|   @invalid_attrs %{"count" => nil, "notes" => nil} | ||||
|   # @invalid_attrs %{"count" => nil, "notes" => nil} | ||||
|  | ||||
|   defp create_shot_group(%{current_user: current_user}) do | ||||
|     container = container_fixture(%{"staged" => true}, current_user) | ||||
| @@ -39,7 +39,7 @@ defmodule CanneryWeb.RangeLiveTest do | ||||
|       {:ok, index_live, _html} = live(conn, Routes.range_index_path(conn, :index)) | ||||
|  | ||||
|       assert index_live |> element("a", dgettext("actions", "Record shots")) |> render_click() =~ | ||||
|               gettext("Record shots") | ||||
|                gettext("Record shots") | ||||
|  | ||||
|       assert_patch(index_live, Routes.range_index_path(conn, :add_shot_group, ammo_group)) | ||||
|  | ||||
|   | ||||
| @@ -19,13 +19,13 @@ defmodule CanneryWeb.TagLiveTest do | ||||
|     "name" => "some updated name", | ||||
|     "text_color" => "some updated text-color" | ||||
|   } | ||||
|   @invalid_attrs %{ | ||||
|     "bg_color" => nil, | ||||
|     "name" => nil, | ||||
|     "text_color" => nil | ||||
|   } | ||||
|   # @invalid_attrs %{ | ||||
|   #   "bg_color" => nil, | ||||
|   #   "name" => nil, | ||||
|   #   "text_color" => nil | ||||
|   # } | ||||
|  | ||||
|   def create_tag %{current_user: current_user} do | ||||
|   def create_tag(%{current_user: current_user}) do | ||||
|     tag = tag_fixture(current_user) | ||||
|     %{tag: tag, current_user: current_user} | ||||
|   end | ||||
| @@ -80,7 +80,9 @@ defmodule CanneryWeb.TagLiveTest do | ||||
|         |> render_submit() | ||||
|         |> follow_redirect(conn, Routes.tag_index_path(conn, :index)) | ||||
|  | ||||
|       assert html =~ dgettext("prompts", "%{name} updated successfully", name: "some updated name") | ||||
|       assert html =~ | ||||
|                dgettext("prompts", "%{name} updated successfully", name: "some updated name") | ||||
|  | ||||
|       assert html =~ "some updated bg-color" | ||||
|     end | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user