From a51b1462e26906c11294bd1c9add0840e98b3e5c Mon Sep 17 00:00:00 2001 From: Giorgio Azzinnaro Date: Tue, 4 Oct 2022 19:39:25 +0200 Subject: [PATCH] test: fix handler --- test/ex_twelve_data/realtime_prices_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ex_twelve_data/realtime_prices_test.exs b/test/ex_twelve_data/realtime_prices_test.exs index 01659a4..1a99bd2 100644 --- a/test/ex_twelve_data/realtime_prices_test.exs +++ b/test/ex_twelve_data/realtime_prices_test.exs @@ -23,7 +23,7 @@ defmodule ExTwelveData.RealtimePricesTest do test "handle price update" do RealTimePrices.handle_frame( {:text, ~s({"event": "price"})}, - %{mod: SamplePriceUpdateHandler} + %{handler: SamplePriceUpdateHandler} ) end end