aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-26 14:41:45 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-26 14:41:50 -0400
commit246fa3e81dbece622c8c244e383d21db8a332523 (patch)
tree266209f22c69e45430c13ecf179e02a21653470c
parentff8e239493277b56b3ef866436a9cb1b38bc7b9c (diff)
downloadrneovim-246fa3e81dbece622c8c244e383d21db8a332523.tar.gz
rneovim-246fa3e81dbece622c8c244e383d21db8a332523.tar.bz2
rneovim-246fa3e81dbece622c8c244e383d21db8a332523.zip
oldtests: comment out test for 'set cpo+=.'
nvim does not support POSIX cpoptions.
-rw-r--r--src/nvim/testdir/test_cd.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_cd.vim b/src/nvim/testdir/test_cd.vim
index c63f0060f8..770ed55b8d 100644
--- a/src/nvim/testdir/test_cd.vim
+++ b/src/nvim/testdir/test_cd.vim
@@ -46,10 +46,10 @@ func Test_cd_with_cpo_chdir()
e Xfoo
call setline(1, 'foo')
let path = getcwd()
- set cpo+=.
+ " set cpo+=.
" :cd should fail when buffer is modified and 'cpo' contains dot.
- call assert_fails('cd ..', 'E747:')
+ " call assert_fails('cd ..', 'E747:')
call assert_equal(path, getcwd())
" :cd with exclamation mark should succeed.