Skip to content

Commit

Permalink
Cleaning up various warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bcardarella committed Dec 9, 2023
1 parent 3909686 commit 9beb448
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ defmodule LiveViewNative.MixProject do
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
{:makeup_eex, ">= 0.1.1", only: :dev, runtime: false},
{:owl, "~> 0.8", runtime: false},
{:deep_merge, "~> 1.0", only: :dev},
{:deep_merge, "~> 1.0", only: [:dev, :test]},
{:live_view_native_platform, "0.2.0-beta.2"}
]
end
Expand Down
2 changes: 1 addition & 1 deletion test/live_view_native/components_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule LiveViewNative.ComponentsTest do
alias LiveViewNative.TestComponents

defp one(fragment, selector) do
[element | tail] = Floki.find(fragment, selector)
[element | _tail] = Floki.find(fragment, selector)

element
end
Expand Down
1 change: 0 additions & 1 deletion test/mix/tasks/install_test.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
defmodule Mix.Tasks.Lvn.InstallTest do
use ExUnit.Case
doctest Mix.Tasks.Lvn.Install
alias Mix.Tasks.Lvn.Install

# infer_app_name broke on commit d6a3036e9ce32d309e1bd4438b64b13487e81e19
# when it started to return an atom instead of a string.
Expand Down

0 comments on commit 9beb448

Please sign in to comment.