revert: "oldtests: win: fix buffer pathsep" (#21017)

This reverts commit 40e894f595.

No longer needed after #10679
This commit is contained in:
zeertzjq
2022-11-10 13:38:17 +08:00
committed by GitHub
parent 0faf007a23
commit 04c73dbedb

View File

@@ -3441,9 +3441,9 @@ func Xmultidirstack_tests(cchar)
let l1 = g:Xgetlist({'nr':1, 'items':1}) let l1 = g:Xgetlist({'nr':1, 'items':1})
let l2 = g:Xgetlist({'nr':2, 'items':1}) let l2 = g:Xgetlist({'nr':2, 'items':1})
call assert_equal(expand('Xone/a/one.txt'), bufname(l1.items[1].bufnr)) call assert_equal('Xone/a/one.txt', bufname(l1.items[1].bufnr))
call assert_equal(3, l1.items[1].lnum) call assert_equal(3, l1.items[1].lnum)
call assert_equal(expand('Xtwo/a/two.txt'), bufname(l2.items[1].bufnr)) call assert_equal('Xtwo/a/two.txt', bufname(l2.items[1].bufnr))
call assert_equal(5, l2.items[1].lnum) call assert_equal(5, l2.items[1].lnum)
endfunc endfunc