Skip to content

Commit 3a052e6

Browse files
committed
Clangd now returns a bucnh of stdlib suggestions we don't want to check for... sometimes
1 parent 5ccce0e commit 3a052e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/completion.common.vim

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -339,16 +339,16 @@ function! Test_Completion_FixIt()
339339
function! Check1( id )
340340
call WaitForCompletion()
341341
call CheckCurrentLine( 'do_a' )
342-
call CheckCompletionItemsContainsExactly( [ 'do_a_thing(Thing thing)',
343-
\ 'do_another_thing()' ] )
342+
call CheckCompletionItemsHasItems( [ 'do_a_thing(Thing thing)',
343+
\ 'do_another_thing()' ] )
344344
call FeedAndCheckAgain( "\<Tab>" , funcref( 'Check2' ) )
345345
endfunction
346346

347347
function! Check2( id )
348348
call WaitForCompletion()
349349
call CheckCurrentLine( 'do_a_thing' )
350-
call CheckCompletionItemsContainsExactly( [ 'do_a_thing(Thing thing)',
351-
\ 'do_another_thing()' ] )
350+
call CheckCompletionItemsHasItems( [ 'do_a_thing(Thing thing)',
351+
\ 'do_another_thing()' ] )
352352
call FeedAndCheckAgain( '(' , funcref( 'Check3' ) )
353353
endfunction
354354

0 commit comments

Comments
 (0)