aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-11-10 13:38:17 +0800
committerGitHub <noreply@github.com>2022-11-10 13:38:17 +0800
commit04c73dbedb8a82ed68ff0b0be32c2bee930fe529 (patch)
treedf1ed37d3bd49ec9da49bf89fcdbb8b0ef9112ea
parent0faf007a236c9b51f151790f79ee59366b501c55 (diff)
downloadrneovim-04c73dbedb8a82ed68ff0b0be32c2bee930fe529.tar.gz
rneovim-04c73dbedb8a82ed68ff0b0be32c2bee930fe529.tar.bz2
rneovim-04c73dbedb8a82ed68ff0b0be32c2bee930fe529.zip
revert: "oldtests: win: fix buffer pathsep" (#21017)
This reverts commit 40e894f59570a6192aabbe4fe34c456bd00ae871. No longer needed after #10679
-rw-r--r--src/nvim/testdir/test_quickfix.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_quickfix.vim b/src/nvim/testdir/test_quickfix.vim
index 42bdb7bad1..5edcf9ce0e 100644
--- a/src/nvim/testdir/test_quickfix.vim
+++ b/src/nvim/testdir/test_quickfix.vim
@@ -3441,9 +3441,9 @@ func Xmultidirstack_tests(cchar)
let l1 = g:Xgetlist({'nr':1, '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(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)
endfunc