diff --git a/test/avx/demuxer_test.exs b/test/avx/demuxer_test.exs index e6567a2..fba3582 100644 --- a/test/avx/demuxer_test.exs +++ b/test/avx/demuxer_test.exs @@ -14,7 +14,7 @@ defmodule AVx.DemuxerTest do pid = start_link_supervised!( {ThousandIsland, - [port: 0, handler_module: Support.TiHandler, handler_options: %{path: @input}]} + [port: 0, handler_module: Support.Handler, handler_options: %{path: @input}]} ) {:ok, {_, port}} = ThousandIsland.listener_info(pid) diff --git a/test/support.ex b/test/support.ex index 83b8db1..ddbf086 100644 --- a/test/support.ex +++ b/test/support.ex @@ -19,7 +19,7 @@ defmodule Support do end end -defmodule Support.TiHandler do +defmodule Support.Handler do use ThousandIsland.Handler @impl ThousandIsland.Handler