Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide_completion/src/tests/visibility.rs')
| -rw-r--r-- | crates/ide_completion/src/tests/visibility.rs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/crates/ide_completion/src/tests/visibility.rs b/crates/ide_completion/src/tests/visibility.rs index 2fd16235dc..8fdfeccb9a 100644 --- a/crates/ide_completion/src/tests/visibility.rs +++ b/crates/ide_completion/src/tests/visibility.rs @@ -17,9 +17,6 @@ pub($0) "#, expect![[r#" kw in - kw self - kw super - kw crate "#]], ); } @@ -30,11 +27,7 @@ fn after_in_kw() { r#" pub(in $0) "#, - expect![[r#" - kw self - kw super - kw crate - "#]], + expect![[r#""#]], ); } |