From 6139d3d7b1a91a971683aaeea8a4590e9af4c361 Mon Sep 17 00:00:00 2001 From: Daniel Morandini Date: Tue, 31 Oct 2023 12:41:02 +0100 Subject: [PATCH] Rename handler --- test/avx/demuxer_test.exs | 2 +- test/support.ex | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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