diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-10-03 12:13:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-03 12:13:04 +0800 |
commit | 04af9d49ee9f29a578d0891af20857fea45b674b (patch) | |
tree | e1baa013cdbdbe9dff19a53b186809910fef4bed | |
parent | 6851b265ba1d232cc47927ef982d10d5df7a5cf4 (diff) | |
download | rneovim-04af9d49ee9f29a578d0891af20857fea45b674b.tar.gz rneovim-04af9d49ee9f29a578d0891af20857fea45b674b.tar.bz2 rneovim-04af9d49ee9f29a578d0891af20857fea45b674b.zip |
test(fileio_spec): fix files not cleaned up properly (#25483)
-rw-r--r-- | test/functional/core/fileio_spec.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/core/fileio_spec.lua b/test/functional/core/fileio_spec.lua index f2b360f0d8..a1a90a59f3 100644 --- a/test/functional/core/fileio_spec.lua +++ b/test/functional/core/fileio_spec.lua @@ -40,6 +40,7 @@ describe('fileio', function() os.remove('Xtest_startup_file1') os.remove('Xtest_startup_file1~') os.remove('Xtest_startup_file2') + os.remove('Xtest_startup_file2~') os.remove('Xtest_ัะตัั.md') os.remove('Xtest-u8-int-max') os.remove('Xtest-overwrite-forced') @@ -136,7 +137,7 @@ describe('fileio', function() it('backup with full path with spaces', function() skip(is_ci('cirrus')) clear() - mkdir('Xtest_backup with spaces') + mkdir('Xtest_backupdir with spaces') command('set backup') command('set backupdir=Xtest_backupdir\\ with\\ spaces//') command('write Xtest_startup_file1') |