summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2021-01-20 20:45:17 +0900
committerGitHub <noreply@github.com>2021-01-20 20:45:17 +0900
commit16c45b82130c602c1542287d4509fc2809035e04 (patch)
treeabc1a9178ae74a458a5cd0fbdb416d5cdc3b8302 /test
parent8de0e7b9ba43ed8b3d5697f2f0a14b0d3e399e68 (diff)
parentddfc43e774fd38e4051ba9fd3619ca9f0da6639f (diff)
downloadale-16c45b82130c602c1542287d4509fc2809035e04.zip
Merge pull request #3453 from blinsay/blinsay/rust-analyzer-lsp
pass lsp intialization_options to rust-analyzer
Diffstat (limited to 'test')
-rw-r--r--test/command_callback/test_rust_analyzer_callbacks.vader4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/command_callback/test_rust_analyzer_callbacks.vader b/test/command_callback/test_rust_analyzer_callbacks.vader
index 95866076..efab1378 100644
--- a/test/command_callback/test_rust_analyzer_callbacks.vader
+++ b/test/command_callback/test_rust_analyzer_callbacks.vader
@@ -16,5 +16,5 @@ Execute(The project root should be detected correctly):
Execute(Should accept configuration settings):
AssertLSPConfig {}
- let b:ale_rust_analyzer_config = {'rust': {'clippy_preference': 'on'}}
- AssertLSPConfig {'rust': {'clippy_preference': 'on'}}
+ let b:ale_rust_analyzer_config = {'diagnostics': {'disabled': ['unresolved-import']}}
+ AssertLSPOptions {'diagnostics': {'disabled': ['unresolved-import']}}