vim-patch:9.1.1941: tests: Test_execute_register() leaves swapfile behind

Problem:  tests: Test_execute_register() leaves swapfile behind
Solution: Use :bw instead of :close to close the buffer completely

791478b30a

Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq
2025-12-03 08:59:54 +08:00
parent 6456a7cd1e
commit 7452a8a568

View File

@@ -561,7 +561,7 @@ func Test_execute_register()
new
call feedkeys("@=\<BS>ax\<CR>y", 'xt')
call assert_equal(['x', 'y'], getline(1, '$'))
close!
bw!
" cannot execute a register in operator pending mode
call assert_beeps('normal! c@r')