Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszsamson committed Jun 11, 2024
1 parent e27cd4a commit 5a71a3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/debug_adapter/lib/debug_adapter/server.ex
Original file line number Diff line number Diff line change
Expand Up @@ -2288,10 +2288,10 @@ defmodule ElixirLS.DebugAdapter.Server do

case {registered_name, label} do
{{:ok, registered_name}, {:ok, label}} ->
"#{registered_name}: #{inspect(label)}"
"#{inspect(registered_name)}: #{inspect(label)}"

{{:ok, registered_name}, _} ->
to_string(registered_name)
inspect(registered_name)

{_, {:ok, label}} ->
inspect(label)
Expand Down

0 comments on commit 5a71a3f

Please sign in to comment.