diff src/testdir/test_window_cmd.vim @ 31347:56a2af8c0980 v9.0.1007

patch 9.0.1007: there is no way to get a list of swap file names Commit: https://github.com/vim/vim/commit/c216a7a21a25a701b84b79abc1ba6ab0baa3a311 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 5 13:50:55 2022 +0000 patch 9.0.1007: there is no way to get a list of swap file names Problem: There is no way to get a list of swap file names. Solution: Add the swapfilelist() function. Use it in the test script to clean up. Remove deleting individual swap files.
author Bram Moolenaar <Bram@vim.org>
date Mon, 05 Dec 2022 15:00:11 +0100
parents 97bb0811cfd4
children ede2bd5f3426
line wrap: on
line diff
--- a/src/testdir/test_window_cmd.vim
+++ b/src/testdir/test_window_cmd.vim
@@ -137,9 +137,6 @@ endfunc
 
 " Test the ":wincmd ^" and "<C-W>^" commands.
 func Test_window_split_edit_alternate()
-  " in case a previous failure left a swap file behind
-  call delete('.Xfoo.swp')
-
   " Test for failure when the alternate buffer/file no longer exists.
   edit Xfoo | %bw
   call assert_fails(':wincmd ^', 'E23:')
@@ -172,9 +169,6 @@ endfunc
 
 " Test the ":[count]wincmd ^" and "[count]<C-W>^" commands.
 func Test_window_split_edit_bufnr()
-  " in case a previous failure left a swap file behind
-  call delete('.Xfoo.swp')
-
   %bwipeout
   let l:nr = bufnr('%') + 1
   call assert_fails(':execute "normal! ' . l:nr . '\<C-W>\<C-^>"', 'E92:')