Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.

Commit 61b8b66

Browse files
committed
Fix formatting
1 parent dd673f3 commit 61b8b66

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/next_ls/helpers/ast_helpers_test.exs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,18 @@ defmodule NextLS.ASTHelpersTest do
9595

9696
for line <- lines do
9797
position = %Position{line: line, character: 0}
98-
assert {:ok, {:defmodule, _, [{:__aliases__, _, [:Foo]} | _]}} = ASTHelpers.get_surrounding_module(ast, position)
98+
99+
assert {:ok, {:defmodule, _, [{:__aliases__, _, [:Foo]} | _]}} =
100+
ASTHelpers.get_surrounding_module(ast, position)
99101
end
100102

101103
lines = 5..7
102104

103105
for line <- lines do
104106
position = %Position{line: line, character: 0}
105-
assert {:ok, {:defmodule, _, [{:__aliases__, _, [:Bar]} | _]}} = ASTHelpers.get_surrounding_module(ast, position)
107+
108+
assert {:ok, {:defmodule, _, [{:__aliases__, _, [:Bar]} | _]}} =
109+
ASTHelpers.get_surrounding_module(ast, position)
106110
end
107111

108112
position = %Position{line: 0, character: 0}

0 commit comments

Comments
 (0)