Skip to content

Commit ba39032

Browse files
committed
fix warning
1 parent 761f3f4 commit ba39032

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/plug_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defmodule Sentry.PlugTest do
1919

2020
test "overriding handle_errors/2" do
2121
Code.compile_string("""
22-
defmodule DefaultConfigApp do
22+
defmodule OverrideApp do
2323
use Plug.Router
2424
use Plug.ErrorHandler
2525
use Sentry.Plug
@@ -45,7 +45,7 @@ defmodule Sentry.PlugTest do
4545
conn = conn(:post, "/error_route", %{})
4646

4747
assert_raise(RuntimeError, "Error", fn ->
48-
DefaultConfigApp.call(conn, [])
48+
OverrideApp.call(conn, [])
4949
end)
5050

5151
assert {500, _headers, "Something went terribly wrong"} = sent_resp(conn)

0 commit comments

Comments
 (0)