diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-04 23:07:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 23:07:21 +0800 |
commit | dcbf9f93e9038d9b4eb782aff2a07e2560f6e04e (patch) | |
tree | d3a0d9ec25d475417134efe24f0fadc3593f5a46 /src/nvim/testdir | |
parent | c50cea3de4480014a6108285eb2d530886cc8303 (diff) | |
parent | 9b0363d365f92b1a31bcf0fc32969a4667c11e95 (diff) | |
download | rneovim-dcbf9f93e9038d9b4eb782aff2a07e2560f6e04e.tar.gz rneovim-dcbf9f93e9038d9b4eb782aff2a07e2560f6e04e.tar.bz2 rneovim-dcbf9f93e9038d9b4eb782aff2a07e2560f6e04e.zip |
Merge pull request #17288 from zeertzjq/vim-8.2.1128
vim-patch:8.2.1128: the write message mentions characters, but it's bytes
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r-- | src/nvim/testdir/test_cscope.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_cscope.vim b/src/nvim/testdir/test_cscope.vim index cc6154af69..faf37485cd 100644 --- a/src/nvim/testdir/test_cscope.vim +++ b/src/nvim/testdir/test_cscope.vim @@ -102,7 +102,7 @@ func Test_cscopeWithCscopeConnections() for cmd in ['cs find f Xmemfile_test.c', 'cs find 7 Xmemfile_test.c'] enew let a = execute(cmd) - call assert_true(a =~ '"Xmemfile_test.c" \d\+L, \d\+C') + call assert_true(a =~ '"Xmemfile_test.c" \d\+L, \d\+B') call assert_equal('Xmemfile_test.c', @%) endfor @@ -112,7 +112,7 @@ func Test_cscopeWithCscopeConnections() let a = execute(cmd) let alines = split(a, '\n', 1) call assert_equal('', alines[0]) - call assert_true(alines[1] =~ '"Xmemfile_test.c" \d\+L, \d\+C') + call assert_true(alines[1] =~ '"Xmemfile_test.c" \d\+L, \d\+B') call assert_equal('(1 of 1): <<global>> #include <assert.h>', alines[2]) call assert_equal('#include <assert.h>', getline('.')) endfor |