mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
fix the test
This commit is contained in:
@@ -531,7 +531,7 @@ fn foo(mut new_name : u32) -> u32 {
|
||||
fn test_rename(text: &str, new_name: &str, expected: &str) {
|
||||
let (analysis, position) = single_file_with_position(text);
|
||||
let edits = analysis.rename(position, new_name).unwrap();
|
||||
let mut text_edit_bulder = ra_text_edit::TextEditBuilder::new();
|
||||
let mut text_edit_bulder = ra_text_edit::TextEditBuilder::default();
|
||||
let mut file_id: Option<FileId> = None;
|
||||
for edit in edits {
|
||||
file_id = Some(edit.file_id);
|
||||
|
||||
@@ -60,11 +60,6 @@ fn test_change_visibility() {
|
||||
"<|>pub(crate) trait Foo {}",
|
||||
);
|
||||
check_assist(change_visibility, "m<|>od {}", "<|>pub(crate) mod {}");
|
||||
check_assist(
|
||||
change_visibility,
|
||||
"pub(crate) f<|>n foo() {}",
|
||||
"pub(crate) f<|>n foo() {}",
|
||||
);
|
||||
check_assist(
|
||||
change_visibility,
|
||||
"unsafe f<|>n foo() {}",
|
||||
|
||||
Reference in New Issue
Block a user