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 fed32bf commit 036159fCopy full SHA for 036159f
apps/language_server/test/providers/execute_command/expand_macro_test.exs
@@ -132,6 +132,9 @@ defmodule ElixirLS.LanguageServer.Providers.ExecuteCommand.ExpandMacroTest do
132
)
133
"""
134
else
135
+ if Version.match?(System.version(), "< 1.14.0") do
136
+ "Application\n\n(\n Application\n @doc false\n {:stop, 1}\n nil\n)"
137
+ else
138
139
(
140
require Application
@@ -146,6 +149,7 @@ defmodule ElixirLS.LanguageServer.Providers.ExecuteCommand.ExpandMacroTest do
146
149
147
150
Module.make_overridable(MyModule, Application)
148
151
152
+ end
153
end)
154
|> String.trim()
155
end
0 commit comments