Skip to content

Commit f941c3c

Browse files
committedFeb 4, 2025·
Remove warnings on Elixir v1.19+
1 parent 003a7ad commit f941c3c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎lib/plug/adapters/test/conn.ex

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Plug.Adapters.Test.Conn do
44

55
## Test helpers
66

7-
def conn(conn, method, uri, body_or_params) do
7+
def conn(%Plug.Conn{} = conn, method, uri, body_or_params) do
88
maybe_flush()
99
uri = URI.parse(uri)
1010

@@ -38,7 +38,7 @@ defmodule Plug.Adapters.Test.Conn do
3838

3939
conn_port = if conn.port != 0, do: conn.port, else: 80
4040

41-
%Plug.Conn{
41+
%{
4242
conn
4343
| adapter: {__MODULE__, state},
4444
host: uri.host || conn.host || "www.example.com",

‎lib/plug/method_override.ex

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ defmodule Plug.MethodOverride do
5757
conn
5858
end
5959

60-
defp override_method(conn, body_params) do
60+
defp override_method(%Plug.Conn{} = conn, body_params) do
6161
with method when is_binary(method) <- body_params["_method"] || "",
6262
method = String.upcase(method, :ascii),
6363
true <- method in @allowed_methods do
64-
%Plug.Conn{conn | method: method}
64+
%{conn | method: method}
6565
else
6666
_ -> conn
6767
end

0 commit comments

Comments
 (0)