aboutsummaryrefslogtreecommitdiffstats
path: root/test/ws_SUITE_data/ws_send_many.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/ws_SUITE_data/ws_send_many.erl')
-rw-r--r--test/ws_SUITE_data/ws_send_many.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ws_SUITE_data/ws_send_many.erl b/test/ws_SUITE_data/ws_send_many.erl
index d621a3d..2f6437f 100644
--- a/test/ws_SUITE_data/ws_send_many.erl
+++ b/test/ws_SUITE_data/ws_send_many.erl
@@ -12,10 +12,10 @@ init(Req, Opts) ->
websocket_init(State) ->
erlang:send_after(10, self(), send_many),
- {ok, State}.
+ {[], State}.
websocket_handle(_Frame, State) ->
- {ok, State}.
+ {[], State}.
websocket_info(send_many, State = [{sequence, Sequence}]) ->
- {reply, Sequence, State}.
+ {Sequence, State}.