vim-patch:9.1.0663: tests: zip test still resets 'shellslash' option

Problem:  tests: zip test still resets 'shellslash' option
Solution: Remove resetting the 'shellslash' option, the zip
          plugin should now be able to handle this options

closes: vim/vim#15434

91efcd115e

Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq 2024-08-07 07:07:49 +08:00
parent 450d49660f
commit 1937870114

View File

@ -10,8 +10,6 @@ endif
runtime plugin/zipPlugin.vim
func Test_zip_basic()
let _sl = &shellslash
set noshellslash
"## get our zip file
if !filecopy("samples/test.zip", "X.zip")
@ -134,6 +132,4 @@ func Test_zip_basic()
bw
let &shellslash = _sl
endfunc