We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20a77e1 commit 131dbadCopy full SHA for 131dbad
crates/pgt_completions/src/test_helper.rs
@@ -202,7 +202,7 @@ pub(crate) async fn assert_complete_results(
202
let (not_existing, existing): (Vec<CompletionAssertion>, Vec<CompletionAssertion>) =
203
assertions.into_iter().partition(|a| match a {
204
CompletionAssertion::LabelNotExists(_) | CompletionAssertion::KindNotExists(_) => true,
205
- _ => false,
+ CompletionAssertion::Label(_) | CompletionAssertion::LabelAndKind(_, _) => false,
206
});
207
208
assert!(
0 commit comments