comparison src/testdir/test_ins_complete.vim @ 33680:76ff7b7b44f2 v9.0.2077

patch 9.0.2077: CI fails because of trailing whitespace in test Commit: https://github.com/vim/vim/commit/87ca5e86fa0ef305f3d39cc4261b622f21417f7f Author: Christian Brabandt <cb@256bit.org> Date: Fri Oct 27 19:47:29 2023 +0200 patch 9.0.2077: CI fails because of trailing whitespace in test Problem: CI fails because of trailing whitespace in test Solution: Remove it Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Fri, 27 Oct 2023 20:00:03 +0200
parents 021e5bb88513
children 9aa03e12b2b5
comparison
equal deleted inserted replaced
33679:7812e4313333 33680:76ff7b7b44f2
2349 call feedkeys("Go\<C-X>\<C-N>\<C-P>\<F5>\<Esc>_dd", 'tx') 2349 call feedkeys("Go\<C-X>\<C-N>\<C-P>\<F5>\<Esc>_dd", 'tx')
2350 call assert_equal(0, g:compl_info['selected']) 2350 call assert_equal(0, g:compl_info['selected'])
2351 call assert_equal(6 , len(g:compl_info['items'])) 2351 call assert_equal(6 , len(g:compl_info['items']))
2352 call assert_equal("fff", g:compl_info['items'][g:compl_info['selected']]['word']) 2352 call assert_equal("fff", g:compl_info['items'][g:compl_info['selected']]['word'])
2353 call feedkeys("Go\<C-X>\<C-N>\<C-N>\<C-N>\<C-N>\<C-N>\<C-N>\<C-N>\<C-N>\<C-N>\<F5>\<Esc>_dd", 'tx') 2353 call feedkeys("Go\<C-X>\<C-N>\<C-N>\<C-N>\<C-N>\<C-N>\<C-N>\<C-N>\<C-N>\<C-N>\<F5>\<Esc>_dd", 'tx')
2354 call assert_equal("aaa", g:compl_info['items'][g:compl_info['selected']]['word']) 2354 call assert_equal("aaa", g:compl_info['items'][g:compl_info['selected']]['word'])
2355 call assert_equal(6 , len(g:compl_info['items'])) 2355 call assert_equal(6 , len(g:compl_info['items']))
2356 2356
2357 set completeopt& 2357 set completeopt&
2358 bwipe! 2358 bwipe!
2359 endfunc 2359 endfunc