Skip to content

Commit 442c698

Browse files
committed
fix test warnings
1 parent 8b3fa55 commit 442c698

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apps/elixir_ls_debugger/test/fixtures/mix_project/config/config.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is responsible for configuring your application
22
# and its dependencies with the aid of the Mix.Config module.
3-
use Mix.Config
3+
import Config
44

55
# This configuration is loaded before any dependency and is restricted
66
# to this project. If another project depends on this project, this

apps/elixir_ls_utils/config/config.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is responsible for configuring your application
22
# and its dependencies with the aid of the Mix.Config module.
3-
use Mix.Config
3+
import Config
44

55
# This configuration is loaded before any dependency and is restricted
66
# to this project. If another project depends on this project, this

apps/language_server/test/providers/document_symbols_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2337,7 +2337,7 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
23372337
uri = "file:///project/test.exs"
23382338

23392339
text = """
2340-
use Mix.Config
2340+
import Config
23412341
config :logger, :console,
23422342
level: :info,
23432343
format: "$date $time [$level] $metadata$message\n",
@@ -2387,7 +2387,7 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
23872387
uri = "file:///project/test.exs"
23882388

23892389
text = """
2390-
use Mix.Config
2390+
import Config
23912391
config :logger, :console,
23922392
level: :info,
23932393
format: "$date $time [$level] $metadata$message\n",

0 commit comments

Comments
 (0)