Skip to content

Commit a3e7336

Browse files
committed
run formatter
1 parent ebc5ca5 commit a3e7336

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/alchemist/helpers/complete_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ defmodule Alchemist.Helpers.CompleteTest do
6363

6464
assert {:yes, 't', [%{name: "Dict"}]} = expand('Dic')
6565
assert {:yes, [], suggestions} = expand('Ex')
66-
assert Enum.any?(suggestions, & &1.name == "ExUnit")
67-
assert Enum.any?(suggestions, & &1.name == "Exception")
66+
assert Enum.any?(suggestions, &(&1.name == "ExUnit"))
67+
assert Enum.any?(suggestions, &(&1.name == "Exception"))
6868
end
6969

7070
test "Elixir no completion for underscored functions with no doc" do

0 commit comments

Comments
 (0)