Cleanup tests

This commit is contained in:
Aleksey Kladov 2021-01-22 15:13:18 +03:00
parent 2c786f1b98
commit f67a2eedf5

View File

@ -162,12 +162,12 @@ fn check(ra_fixture: &str) {
fn goto_def_for_extern_crate() {
check(
r#"
//- /main.rs crate:main deps:std
extern crate std$0;
//- /std/lib.rs crate:std
// empty
//^ file
"#,
//- /main.rs crate:main deps:std
extern crate std$0;
//- /std/lib.rs crate:std
// empty
//^ file
"#,
)
}
@ -175,12 +175,12 @@ fn goto_def_for_extern_crate() {
fn goto_def_for_renamed_extern_crate() {
check(
r#"
//- /main.rs crate:main deps:std
extern crate std as abc$0;
//- /std/lib.rs crate:std
// empty
//^ file
"#,
//- /main.rs crate:main deps:std
extern crate std as abc$0;
//- /std/lib.rs crate:std
// empty
//^ file
"#,
)
}