diff options
-rw-r--r-- | src/nvim/testdir/test_cd.vim | 4 |
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. |