diff options
Diffstat (limited to 'crates/ra_ide_api')
-rw-r--r-- | crates/ra_ide_api/tests/test/main.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/crates/ra_ide_api/tests/test/main.rs b/crates/ra_ide_api/tests/test/main.rs index 756075190..c2cb38f7e 100644 --- a/crates/ra_ide_api/tests/test/main.rs +++ b/crates/ra_ide_api/tests/test/main.rs | |||
@@ -1,9 +1,9 @@ | |||
1 | use insta::assert_debug_snapshot_matches; | ||
1 | use ra_ide_api::{ | 2 | use ra_ide_api::{ |
2 | AnalysisChange, | 3 | mock_analysis::{single_file, single_file_with_position, MockAnalysis}, |
3 | CrateGraph, FileId, mock_analysis::{MockAnalysis, single_file, single_file_with_position}, Query, | 4 | AnalysisChange, CrateGraph, FileId, Query, |
4 | }; | 5 | }; |
5 | use ra_syntax::TextRange; | 6 | use ra_syntax::TextRange; |
6 | use insta::assert_debug_snapshot_matches; | ||
7 | 7 | ||
8 | #[test] | 8 | #[test] |
9 | fn test_unresolved_module_diagnostic() { | 9 | fn test_unresolved_module_diagnostic() { |
@@ -26,12 +26,12 @@ fn test_resolve_crate_root() { | |||
26 | " | 26 | " |
27 | //- /bar.rs | 27 | //- /bar.rs |
28 | mod foo; | 28 | mod foo; |
29 | //- /bar/foo.rs | 29 | //- /foo.rs |
30 | // emtpy <|> | 30 | // empty <|> |
31 | ", | 31 | ", |
32 | ); | 32 | ); |
33 | let root_file = mock.id_of("/bar.rs"); | 33 | let root_file = mock.id_of("/bar.rs"); |
34 | let mod_file = mock.id_of("/bar/foo.rs"); | 34 | let mod_file = mock.id_of("/foo.rs"); |
35 | let mut host = mock.analysis_host(); | 35 | let mut host = mock.analysis_host(); |
36 | assert!(host.analysis().crate_for(mod_file).unwrap().is_empty()); | 36 | assert!(host.analysis().crate_for(mod_file).unwrap().is_empty()); |
37 | 37 | ||