diff options
Diffstat (limited to 'crates/ra_analysis')
-rw-r--r-- | crates/ra_analysis/tests/tests.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/crates/ra_analysis/tests/tests.rs b/crates/ra_analysis/tests/tests.rs index dc4751ac0..7ae3d0eeb 100644 --- a/crates/ra_analysis/tests/tests.rs +++ b/crates/ra_analysis/tests/tests.rs | |||
@@ -103,12 +103,12 @@ fn test_unresolved_module_diagnostic() { | |||
103 | ); | 103 | ); |
104 | } | 104 | } |
105 | 105 | ||
106 | // #[test] | 106 | #[test] |
107 | // fn test_unresolved_module_diagnostic_no_diag_for_inline_mode() { | 107 | fn test_unresolved_module_diagnostic_no_diag_for_inline_mode() { |
108 | // let snap = analysis(&[("/lib.rs", "mod foo {}")]); | 108 | let snap = analysis(&[("/lib.rs", "mod foo {}")]); |
109 | // let diagnostics = snap.diagnostics(FileId(1)).unwrap(); | 109 | let diagnostics = snap.diagnostics(FileId(1)).unwrap(); |
110 | // assert_eq_dbg(r#"[]"#, &diagnostics); | 110 | assert_eq_dbg(r#"[]"#, &diagnostics); |
111 | // } | 111 | } |
112 | 112 | ||
113 | #[test] | 113 | #[test] |
114 | fn test_resolve_parent_module() { | 114 | fn test_resolve_parent_module() { |