diff options
author | oxalica <[email protected]> | 2019-10-05 13:55:27 +0100 |
---|---|---|
committer | oxalica <[email protected]> | 2019-10-05 13:55:27 +0100 |
commit | c6303d9fee98232ac83a77f943c39d65c9c6b6db (patch) | |
tree | 9c0f29993289916e3cc43d7be9cfa6f0a62b7754 /crates/ra_lsp_server/tests | |
parent | b271cb18d5ab19624e751867df6705cd1e94edbc (diff) |
Use raw cfgs in json project and fix typo
Diffstat (limited to 'crates/ra_lsp_server/tests')
-rw-r--r-- | crates/ra_lsp_server/tests/heavy_tests/main.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/tests/heavy_tests/main.rs b/crates/ra_lsp_server/tests/heavy_tests/main.rs index 152681062..2ba82ab05 100644 --- a/crates/ra_lsp_server/tests/heavy_tests/main.rs +++ b/crates/ra_lsp_server/tests/heavy_tests/main.rs | |||
@@ -286,7 +286,13 @@ fn test_missing_module_code_action_in_json_project() { | |||
286 | 286 | ||
287 | let project = json!({ | 287 | let project = json!({ |
288 | "roots": [path], | 288 | "roots": [path], |
289 | "crates": [ { "root_module": path.join("src/lib.rs"), "deps": [], "edition": "2015" } ] | 289 | "crates": [ { |
290 | "root_module": path.join("src/lib.rs"), | ||
291 | "deps": [], | ||
292 | "edition": "2015", | ||
293 | "atom_cfgs": [], | ||
294 | "key_value_cfgs": {} | ||
295 | } ] | ||
290 | }); | 296 | }); |
291 | 297 | ||
292 | let code = format!( | 298 | let code = format!( |