Skip to content

Commit cd4fd33

Browse files
committed
fixed missed case
1 parent 7a1d46a commit cd4fd33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/language_server/test/support/fixtures/lsp_protocol.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ defmodule ElixirLS.LanguageServer.Fixtures.LspProtocol do
1717
args when is_list(args) ->
1818
args =
1919
case type.__meta__(:type) do
20-
:notification ->
20+
{:notification, _} ->
2121
Keyword.put(args, :method, type.__meta__(:method_name))
2222

23-
:request ->
23+
{:request, _} ->
2424
args
2525
|> Keyword.put(:id, Keyword.get(opts, :id, next_int()))
2626
|> Keyword.put(:method, type.__meta__(:method_name))

0 commit comments

Comments
 (0)