Skip to content

Commit abad1f8

Browse files
committed
format
1 parent d57bcb7 commit abad1f8

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

apps/debug_adapter/test/binding_test.exs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ defmodule ElixirLS.DebugAdapter.BindingTest do
2828

2929
test "multiple versions" do
3030
assert [{:asd, "b"}] ==
31-
Binding.to_elixir_variable_names([{:_asd@1, "a"}, {:_asd@12, "b"}, {:_asd@11, "c"}])
31+
Binding.to_elixir_variable_names([
32+
{:_asd@1, "a"},
33+
{:_asd@12, "b"},
34+
{:_asd@11, "c"}
35+
])
3236
end
3337

3438
test "filter _" do

apps/elixir_ls_utils/test/support/mix_test.case.ex

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,13 @@ defmodule ElixirLS.Utils.MixTest.Case do
8989

9090
defmacro in_fixture(dir, which, block) do
9191
module = inspect(__CALLER__.module)
92-
function = case __CALLER__.function do
93-
{f, _a} -> Atom.to_string(f)
94-
nil -> nil
95-
end
92+
93+
function =
94+
case __CALLER__.function do
95+
{f, _a} -> Atom.to_string(f)
96+
nil -> nil
97+
end
98+
9699
tmp = Path.join(module, function)
97100

98101
quote do

0 commit comments

Comments
 (0)