aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorIgor Aleksanov <[email protected]>2020-08-12 13:48:56 +0100
committerGitHub <[email protected]>2020-08-12 13:48:56 +0100
commitae0b2477fe5cb8b496b41bd37cb06d1a585bc66b (patch)
treee39f85ea51cbb657d832de62a914632d06e8aa87 /crates
parent831e3d58b32ad64329f0c84ac93b7b97c7d6c268 (diff)
Update crates/ra_ide/src/diagnostics.rs
Co-authored-by: Jonas Schievink <[email protected]>
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_ide/src/diagnostics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide/src/diagnostics.rs b/crates/ra_ide/src/diagnostics.rs
index d97bde939..5ce900bf4 100644
--- a/crates/ra_ide/src/diagnostics.rs
+++ b/crates/ra_ide/src/diagnostics.rs
@@ -869,6 +869,6 @@ struct Foo {
869 869
870 #[test] 870 #[test]
871 fn test_disabled_diagnostics() { 871 fn test_disabled_diagnostics() {
872 check_disabled_diagnostics(r#"mod foo;"#, &vec!["unresolved-module"]); 872 check_disabled_diagnostics(r#"mod foo;"#, &["unresolved-module"]);
873 } 873 }
874} 874}