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.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/crates/ide_completion/src/tests/visibility.rs b/crates/ide_completion/src/tests/visibility.rs
index 8fdfeccb9a..2fd16235dc 100644
--- a/crates/ide_completion/src/tests/visibility.rs
+++ b/crates/ide_completion/src/tests/visibility.rs
@@ -17,6 +17,9 @@ pub($0)
"#,
expect![[r#"
kw in
+ kw self
+ kw super
+ kw crate
"#]],
);
}
@@ -27,7 +30,11 @@ fn after_in_kw() {
r#"
pub(in $0)
"#,
- expect![[r#""#]],
+ expect![[r#"
+ kw self
+ kw super
+ kw crate
+ "#]],
);
}