We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebc5ca5 commit a3e7336Copy full SHA for a3e7336
test/alchemist/helpers/complete_test.exs
@@ -63,8 +63,8 @@ defmodule Alchemist.Helpers.CompleteTest do
63
64
assert {:yes, 't', [%{name: "Dict"}]} = expand('Dic')
65
assert {:yes, [], suggestions} = expand('Ex')
66
- assert Enum.any?(suggestions, & &1.name == "ExUnit")
67
- assert Enum.any?(suggestions, & &1.name == "Exception")
+ assert Enum.any?(suggestions, &(&1.name == "ExUnit"))
+ assert Enum.any?(suggestions, &(&1.name == "Exception"))
68
end
69
70
test "Elixir no completion for underscored functions with no doc" do
0 commit comments