diff options
author | Aleksey Kladov <[email protected]> | 2019-01-03 16:06:51 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-01-03 16:08:24 +0000 |
commit | 6be39ba758eade2a20ab6384127a2b1ca48ca9ce (patch) | |
tree | 6efe72a198bc5476c236379b15534833323dcdc9 /crates/ra_editor | |
parent | a4635a199bc446bd103aa5821e57dc19b8a15751 (diff) |
fix the test
Diffstat (limited to 'crates/ra_editor')
-rw-r--r-- | crates/ra_editor/src/assists/change_visibility.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/crates/ra_editor/src/assists/change_visibility.rs b/crates/ra_editor/src/assists/change_visibility.rs index 379e88d3c..e2cd9ffd1 100644 --- a/crates/ra_editor/src/assists/change_visibility.rs +++ b/crates/ra_editor/src/assists/change_visibility.rs | |||
@@ -62,11 +62,6 @@ mod tests { | |||
62 | check_assist(change_visibility, "m<|>od {}", "<|>pub(crate) mod {}"); | 62 | check_assist(change_visibility, "m<|>od {}", "<|>pub(crate) mod {}"); |
63 | check_assist( | 63 | check_assist( |
64 | change_visibility, | 64 | change_visibility, |
65 | "pub(crate) f<|>n foo() {}", | ||
66 | "pub(crate) f<|>n foo() {}", | ||
67 | ); | ||
68 | check_assist( | ||
69 | change_visibility, | ||
70 | "unsafe f<|>n foo() {}", | 65 | "unsafe f<|>n foo() {}", |
71 | "<|>pub(crate) unsafe fn foo() {}", | 66 | "<|>pub(crate) unsafe fn foo() {}", |
72 | ); | 67 | ); |