Update crates/ra_ide/src/diagnostics.rs

Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
This commit is contained in:
Igor Aleksanov 2020-08-12 15:48:56 +03:00 committed by GitHub
parent 831e3d58b3
commit ae0b2477fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -869,6 +869,6 @@ struct Foo {
#[test]
fn test_disabled_diagnostics() {
check_disabled_diagnostics(r#"mod foo;"#, &vec!["unresolved-module"]);
check_disabled_diagnostics(r#"mod foo;"#, &["unresolved-module"]);
}
}