From 246fa3e81dbece622c8c244e383d21db8a332523 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sun, 26 Aug 2018 14:41:45 -0400 Subject: oldtests: comment out test for 'set cpo+=.' nvim does not support POSIX cpoptions. --- src/nvim/testdir/test_cd.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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. -- cgit