diff --git a/crates/ra_analysis/tests/tests.rs b/crates/ra_analysis/tests/tests.rs index bcf29d29ca..c2ef87b549 100644 --- a/crates/ra_analysis/tests/tests.rs +++ b/crates/ra_analysis/tests/tests.rs @@ -531,7 +531,7 @@ fn test_rename_for_mut_param() { 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 = None; for edit in edits { file_id = Some(edit.file_id); diff --git a/crates/ra_editor/src/assists/change_visibility.rs b/crates/ra_editor/src/assists/change_visibility.rs index 379e88d3c0..e2cd9ffd16 100644 --- a/crates/ra_editor/src/assists/change_visibility.rs +++ b/crates/ra_editor/src/assists/change_visibility.rs @@ -60,11 +60,6 @@ mod tests { "<|>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() {}",